diff options
author | Juanjo <pulento@users.sourceforge.net> | 2001-08-31 06:21:27 +0000 |
---|---|---|
committer | Juanjo <pulento@users.sourceforge.net> | 2001-08-31 06:21:27 +0000 |
commit | 544286b3d39365b30298ae07e66a755200b0895c (patch) | |
tree | 94d51286672db7271843fbfab360255e5bfb9108 /libavcodec/mpegvideo.h | |
parent | 6dbd39fe70f094ab178bc788369379e2229dd630 (diff) | |
download | ffmpeg-544286b3d39365b30298ae07e66a755200b0895c.tar.gz |
Moved some H.263+ variables to MpegEncContext to be thread-safe.
Increase video_buffer on ffmpeg to avoid buffer overrun on big pictures.
Originally committed as revision 114 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index dccdeb24bf..8843265c3c 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -128,7 +128,11 @@ typedef struct MpegEncContext { int P_frame_bits; /* same for P frame */ INT64 wanted_bits; INT64 total_bits; - + + /* H.263+ specific */ + int umvplus; + int umvplus_dec; + /* mpeg4 specific */ int time_increment_bits; int shape; |