comparison vc1.c @ 5998:17883162bd18 libavcodec

Use IDCT functions when FASTTX=0
author kostya
date Sat, 08 Dec 2007 10:50:50 +0000
parents 90de28dfd8d6
children f4859c13426b
comparison
equal deleted inserted replaced
5997:90de28dfd8d6 5998:17883162bd18
812 v->multires = get_bits1(gb); 812 v->multires = get_bits1(gb);
813 v->res_fasttx = get_bits1(gb); 813 v->res_fasttx = get_bits1(gb);
814 if (!v->res_fasttx) 814 if (!v->res_fasttx)
815 { 815 {
816 v->s.dsp.vc1_inv_trans_8x8 = simple_idct; 816 v->s.dsp.vc1_inv_trans_8x8 = simple_idct;
817 v->s.dsp.vc1_inv_trans_8x4 = simple_idct84_add;
818 v->s.dsp.vc1_inv_trans_4x8 = simple_idct48_add;
819 // v->s.dsp.vc1_inv_trans_4x4 = simple_idct44_add;
817 } 820 }
818 821
819 v->fastuvmc = get_bits1(gb); //common 822 v->fastuvmc = get_bits1(gb); //common
820 if (!v->profile && !v->fastuvmc) 823 if (!v->profile && !v->fastuvmc)
821 { 824 {