diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-03-27 07:28:52 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2007-03-27 07:28:52 +0000 |
commit | 351f6b4e91e299157cc75c8af0dca036eca5cd5e (patch) | |
tree | 83b910e8171953f10c610fa8209208a60e33efed /libavcodec/vc1.c | |
parent | 6b27f3b87f5a5b4ab3afb00e915d156301b41958 (diff) | |
download | ffmpeg-351f6b4e91e299157cc75c8af0dca036eca5cd5e.tar.gz |
FASTTX==0 means additional 16 bits in extradata
Originally committed as revision 8533 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index b2a28d92bb..84868904df 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -1261,6 +1261,8 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb) "Old WMV3 version detected, only I-frames will be decoded\n"); //return -1; } + //TODO: figure out what they mean (always 0x402F) + if(!v->res_fasttx) skip_bits(gb, 16); av_log(avctx, AV_LOG_DEBUG, "Profile %i:\nfrmrtq_postproc=%i, bitrtq_postproc=%i\n" "LoopFilter=%i, MultiRes=%i, FastUVMC=%i, Extended MV=%i\n" |