diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-09-03 20:15:34 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-09-03 20:15:34 +0000 |
commit | 9db99069bd780a68a185812f03ae8b137780355e (patch) | |
tree | eb7b0af507d53a9094d6531eab94ecd574aaf9cf /libavcodec/rv10.c | |
parent | b59f574753a573597dfbb7732f4cad478ccae50b (diff) | |
download | ffmpeg-9db99069bd780a68a185812f03ae8b137780355e.tar.gz |
fixing segfault
Originally committed as revision 903 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r-- | libavcodec/rv10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index e484ee2095..0e75f4e440 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -346,7 +346,7 @@ static int rv10_decode_init(AVCodecContext *avctx) MpegEncContext *s = avctx->priv_data; static int done; -// s->avctx= avctx; + s->avctx= avctx; s->out_format = FMT_H263; s->width = avctx->width; |