comparison vc1.c @ 6001:f4859c13426b libavcodec

add ff_ prefix to all simple_idct symbols
author aurel
date Sat, 08 Dec 2007 21:21:11 +0000
parents 17883162bd18
children 2c4164b26d53
comparison
equal deleted inserted replaced
6000:791240825ac4 6001:f4859c13426b
811 v->res_x8 = get_bits1(gb); //reserved 811 v->res_x8 = get_bits1(gb); //reserved
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 = ff_simple_idct;
817 v->s.dsp.vc1_inv_trans_8x4 = simple_idct84_add; 817 v->s.dsp.vc1_inv_trans_8x4 = ff_simple_idct84_add;
818 v->s.dsp.vc1_inv_trans_4x8 = simple_idct48_add; 818 v->s.dsp.vc1_inv_trans_4x8 = ff_simple_idct48_add;
819 // v->s.dsp.vc1_inv_trans_4x4 = simple_idct44_add; 819 // v->s.dsp.vc1_inv_trans_4x4 = ff_simple_idct44_add;
820 } 820 }
821 821
822 v->fastuvmc = get_bits1(gb); //common 822 v->fastuvmc = get_bits1(gb); //common
823 if (!v->profile && !v->fastuvmc) 823 if (!v->profile && !v->fastuvmc)
824 { 824 {