From 59e6f60a99741137811dea2c2980e1f8adbdf0df Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Sat, 8 Dec 2007 21:21:11 +0000 Subject: add ff_ prefix to all simple_idct symbols Originally committed as revision 11192 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/vc1.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'libavcodec/vc1.c') diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 7cbf851f0d..ea1fc22739 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -813,10 +813,10 @@ static int decode_sequence_header(AVCodecContext *avctx, GetBitContext *gb) v->res_fasttx = get_bits1(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->s.dsp.vc1_inv_trans_8x8 = ff_simple_idct; + v->s.dsp.vc1_inv_trans_8x4 = ff_simple_idct84_add; + v->s.dsp.vc1_inv_trans_4x8 = ff_simple_idct48_add; +// v->s.dsp.vc1_inv_trans_4x4 = ff_simple_idct44_add; } v->fastuvmc = get_bits1(gb); //common -- cgit v1.2.3