diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-09-26 13:54:35 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2010-09-26 13:54:35 +0000 |
commit | 10f93363b77b0fdd42acf5626ed896703908c9d3 (patch) | |
tree | 017f9ef00276d8651ac34e6011c38ef39795bc58 /libavcodec/vc1.h | |
parent | b0f65613acb365309ca7eea3b9bd49dfb088d34b (diff) | |
download | ffmpeg-10f93363b77b0fdd42acf5626ed896703908c9d3.tar.gz |
RES_SM in WMV3 is really two flags, so split it in decoder
Originally committed as revision 25208 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.h')
-rw-r--r-- | libavcodec/vc1.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/vc1.h b/libavcodec/vc1.h index d5f0e05465..e5a9cbaec1 100644 --- a/libavcodec/vc1.h +++ b/libavcodec/vc1.h @@ -160,7 +160,8 @@ typedef struct VC1Context{ /** Simple/Main Profile sequence header */ //@{ - int res_sm; ///< reserved, 2b + int res_sprite; ///< reserved, sprite mode + int res_y411; ///< reserved, old interlaced mode int res_x8; ///< reserved int multires; ///< frame-level RESPIC syntax element present int res_fasttx; ///< reserved, always 1 |