diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-12-08 21:21:11 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-12-08 21:21:11 +0000 |
commit | 59e6f60a99741137811dea2c2980e1f8adbdf0df (patch) | |
tree | 4bb814035b1f3ce70617b7716705bfd41de00b41 /libavcodec/vc1.c | |
parent | 98f48ce1576435e60a91729de1aedd2608626fcd (diff) | |
download | ffmpeg-59e6f60a99741137811dea2c2980e1f8adbdf0df.tar.gz |
add ff_ prefix to all simple_idct symbols
Originally committed as revision 11192 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 8 |
1 files changed, 4 insertions, 4 deletions
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 |