diff options
author | Juanjo <pulento@users.sourceforge.net> | 2001-11-12 05:19:55 +0000 |
---|---|---|
committer | Juanjo <pulento@users.sourceforge.net> | 2001-11-12 05:19:55 +0000 |
commit | 102d39088bb9cfb08cc9f78d8e6eca62ed39bded (patch) | |
tree | a8956572b5a5708711d7d3f6a492f1b4a00c6a41 /libavcodec/mpegvideo.h | |
parent | ed8c06708e3d8da1fd56933e5f5e5815a884792e (diff) | |
download | ffmpeg-102d39088bb9cfb08cc9f78d8e6eca62ed39bded.tar.gz |
- Fixed a bug on H.263 MV prediction for MB on GOBs limits.
- Now we can decode H.263v1 streams found on QT without problems.
Originally committed as revision 214 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index da45655327..7b473aaa5a 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -129,6 +129,10 @@ typedef struct MpegEncContext { INT64 wanted_bits; INT64 total_bits; + /* H.263 specific */ + int gob_number; + int first_gob_line; + /* H.263+ specific */ int umvplus; int umvplus_dec; |