Commit badfc158 authored by kostya's avatar kostya

FASTTX==0 means additional 16 bits in extradata

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8533 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c6bb7e69
...@@ -1261,6 +1261,8 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb) ...@@ -1261,6 +1261,8 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb)
"Old WMV3 version detected, only I-frames will be decoded\n"); "Old WMV3 version detected, only I-frames will be decoded\n");
//return -1; //return -1;
} }
//TODO: figure out what they mean (always 0x402F)
if(!v->res_fasttx) skip_bits(gb, 16);
av_log(avctx, AV_LOG_DEBUG, av_log(avctx, AV_LOG_DEBUG,
"Profile %i:\nfrmrtq_postproc=%i, bitrtq_postproc=%i\n" "Profile %i:\nfrmrtq_postproc=%i, bitrtq_postproc=%i\n"
"LoopFilter=%i, MultiRes=%i, FastUVMC=%i, Extended MV=%i\n" "LoopFilter=%i, MultiRes=%i, FastUVMC=%i, Extended MV=%i\n"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment