diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-03-09 13:01:16 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-03-09 13:01:16 +0000 |
commit | 44eb49512888143905860af2de2932ab002cdbf7 (patch) | |
tree | 577944ddd5187ca0b9c09144b824a95ce9d18bc4 /libavcodec/mpegvideo.h | |
parent | ef0bc4c97f1ad704c0d6322775902c5d62adf546 (diff) | |
download | ffmpeg-44eb49512888143905860af2de2932ab002cdbf7.tar.gz |
divx5-gmc support
q-pel mc support
neither is totally bugfree yet though :(
Originally committed as revision 320 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 4413de30fd..01e4778652 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -165,6 +165,7 @@ typedef struct MpegEncContext { int sprite_top; int sprite_brightness_change; int num_sprite_warping_points; + int real_sprite_warping_points; int sprite_offset[2][2]; int sprite_delta[2][2][2]; int sprite_shift[2][2]; @@ -178,7 +179,11 @@ typedef struct MpegEncContext { int sprite_warping_accuracy; int low_latency_sprite; int data_partioning; - + + /* divx specific, used to workaround (many) bugs in divx5 */ + int divx_version; + int divx_build; + /* RV10 specific */ int rv10_version; /* RV10 version: 0 or 3 */ int rv10_first_dc_coded[3]; |