diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-03-07 13:27:15 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-03-07 13:27:15 +0000 |
commit | 73c8e5144af3f90ccb21fa1d058ae02b3394aab0 (patch) | |
tree | c1e5f6cbbcf985a6e697091ba9503cc83d9d1065 /libavcodec/mpegvideo.h | |
parent | cc9ba006eca2222fb1bc3cdde40a6a9d8f36ef75 (diff) | |
download | ffmpeg-73c8e5144af3f90ccb21fa1d058ae02b3394aab0.tar.gz |
gmc bitstream decoding support (the real motion compensation isnt implemnted yet)
Originally committed as revision 318 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index b9328a0a43..4413de30fd 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -164,7 +164,11 @@ typedef struct MpegEncContext { int sprite_left; int sprite_top; int sprite_brightness_change; - int no_sprite_wraping_points; + int num_sprite_warping_points; + int sprite_offset[2][2]; + int sprite_delta[2][2][2]; + int sprite_shift[2][2]; + int mcsel; int quant_precision; int quarter_sample; int scalability; @@ -174,7 +178,7 @@ typedef struct MpegEncContext { int sprite_warping_accuracy; int low_latency_sprite; int data_partioning; - + /* RV10 specific */ int rv10_version; /* RV10 version: 0 or 3 */ int rv10_first_dc_coded[3]; |