aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/mpegvideo.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2002-01-15 22:22:41 +0000
committerMichael Niedermayer <michaelni@gmx.at>2002-01-15 22:22:41 +0000
commitae40484c1ca6df311803f2061cda9f0b85c320f4 (patch)
tree18771503d845e2baf8ddbfade980ae557ebe2cf1 /libavcodec/mpegvideo.c
parent5975626d6f7cf3bb0df7aa5e8f2fcaecc03c3b38 (diff)
downloadffmpeg-ae40484c1ca6df311803f2061cda9f0b85c320f4.tar.gz
(commit by michael)
bye bye weird al rounding bug ;) Originally committed as revision 268 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.c')
-rw-r--r--libavcodec/mpegvideo.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.c b/libavcodec/mpegvideo.c
index 432ab8cccf..c3143ca995 100644
--- a/libavcodec/mpegvideo.c
+++ b/libavcodec/mpegvideo.c
@@ -1052,6 +1052,10 @@ static void encode_picture(MpegEncContext *s, int picture_number)
// (s->pb.buf_ptr - s->ptr_last_mb_line), s->mb_line_avgsize);
s->ptr_last_mb_line = s->pb.buf_ptr;
}
+
+ if (s->h263_msmpeg4)
+ msmpeg4_encode_ext_header(s);
+
//if (s->gob_number)
// fprintf(stderr,"\nNumber of GOB: %d", s->gob_number);
}