Commit a3f24b84 authored by kostya's avatar kostya

WMV3 mode with FASTTX=0 seems to use standard IDCT instead of own 8x8 transform

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10782 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent b564d37c
......@@ -818,9 +818,7 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb)
v->res_fasttx = get_bits1(gb);
if (!v->res_fasttx)
{
av_log(avctx, AV_LOG_ERROR,
"0 for reserved RES_FASTTX is forbidden\n");
//return -1;
v->s.dsp.vc1_inv_trans_8x8 = v->s.dsp.idct;
}
v->fastuvmc = get_bits1(gb); //common
......
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