diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-03-16 16:11:29 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-03-16 16:11:29 +0000 |
commit | 3edcacde04911dac4c56fd74053505a493e561f8 (patch) | |
tree | eff6e5bc0a3dcecec4b78e3709b2c9c4fc6271d2 /libavcodec/rv10.c | |
parent | 6fe1a1a55b90849974a22118040aef6e17999688 (diff) | |
download | ffmpeg-3edcacde04911dac4c56fd74053505a493e561f8.tar.gz |
init cleanup
Originally committed as revision 2899 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/rv10.c')
-rw-r--r-- | libavcodec/rv10.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/rv10.c b/libavcodec/rv10.c index 11c9734fc0..461cd032e7 100644 --- a/libavcodec/rv10.c +++ b/libavcodec/rv10.c @@ -441,6 +441,8 @@ static int rv10_decode_init(AVCodecContext *avctx) MpegEncContext *s = avctx->priv_data; static int done=0; + MPV_decode_defaults(s); + s->avctx= avctx; s->out_format = FMT_H263; s->codec_id= avctx->codec_id; @@ -490,8 +492,6 @@ static int rv10_decode_init(AVCodecContext *avctx) h263_decode_init_vlc(s); - s->progressive_sequence=1; - /* init rv vlc */ if (!done) { init_vlc(&rv_dc_lum, DC_VLC_BITS, 256, |