diff options
author | Alberto Delmás <adelmas@gmail.com> | 2011-04-08 20:00:48 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-10 10:07:49 +0200 |
commit | 768c5251141be705d64a480b641c6b17d32a4e7b (patch) | |
tree | d40b53f710d1b10e099497e498a9527b65618f55 /libavcodec/vc1.h | |
parent | 70ff55733d41303f55bee80041095bd10b87363a (diff) | |
download | ffmpeg-768c5251141be705d64a480b641c6b17d32a4e7b.tar.gz |
Parse sprite data for WMVP and WVP2, and decode sprites for the latter
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/vc1.h')
-rw-r--r-- | libavcodec/vc1.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h index 00dcfbf1d2..d0c0cccfb0 100644 --- a/libavcodec/vc1.h +++ b/libavcodec/vc1.h @@ -306,6 +306,12 @@ typedef struct VC1Context{ uint8_t range_mapuv; //@} + /** Frame decoding info for sprite modes */ + //@{ + int new_sprite; + int two_sprites; + //@} + int p_frame_skipped; int bi_type; int x8_type; |