Commit 8df7cfe9 authored by Kostya Shishkov's avatar Kostya Shishkov

Use IDCT functions when FASTTX=0

Originally committed as revision 11189 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent d2e45f33
......@@ -814,6 +814,9 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb)
if (!v->res_fasttx)
{
v->s.dsp.vc1_inv_trans_8x8 = simple_idct;
v->s.dsp.vc1_inv_trans_8x4 = simple_idct84_add;
v->s.dsp.vc1_inv_trans_4x8 = simple_idct48_add;
// v->s.dsp.vc1_inv_trans_4x4 = simple_idct44_add;
}
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