summaryrefslogtreecommitdiff
path: root/libavcodec/h263.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-03-12 19:55:52 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-03-12 19:55:52 +0000
commitc1341a57f29f3ccc7efaef7a9e41837a91bda9d2 (patch)
tree1c9da8c42afd0eb3df13fc9db04bc9bf6729fcad /libavcodec/h263.c
parent6f2741f4a8b64e3846af57b74d61a8130f5338e6 (diff)
reset interlaced_dct flag
Originally committed as revision 5155 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/h263.c')
-rw-r--r--libavcodec/h263.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/h263.c b/libavcodec/h263.c
index 74e3b9eb0d..93eddf400b 100644
--- a/libavcodec/h263.c
+++ b/libavcodec/h263.c
@@ -5574,6 +5574,7 @@ static int decode_vol_header(MpegEncContext *s, GetBitContext *gb){
s->progressive_sequence=
s->progressive_frame= get_bits1(gb)^1;
+ s->interlaced_dct=0;
if(!get_bits1(gb) && (s->avctx->debug & FF_DEBUG_PICT_INFO))
av_log(s->avctx, AV_LOG_INFO, "MPEG4 OBMC not supported (very likely buggy encoder)\n"); /* OBMC Disable */
if (vo_ver_id == 1) {