summaryrefslogtreecommitdiff
path: root/libavcodec/dv.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-12-08 21:21:11 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-12-08 21:21:11 +0000
commit59e6f60a99741137811dea2c2980e1f8adbdf0df (patch)
tree4bb814035b1f3ce70617b7716705bfd41de00b41 /libavcodec/dv.c
parent98f48ce1576435e60a91729de1aedd2608626fcd (diff)
add ff_ prefix to all simple_idct symbols
Originally committed as revision 11192 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dv.c')
-rw-r--r--libavcodec/dv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dv.c b/libavcodec/dv.c
index 19615b4319..2244263b93 100644
--- a/libavcodec/dv.c
+++ b/libavcodec/dv.c
@@ -225,7 +225,7 @@ static int dvvideo_init(AVCodecContext *avctx)
/* 248DCT setup */
s->fdct[1] = dsp.fdct248;
- s->idct_put[1] = simple_idct248_put; // FIXME: need to add it to DSP
+ s->idct_put[1] = ff_simple_idct248_put; // FIXME: need to add it to DSP
if(avctx->lowres){
for (i=0; i<64; i++){
int j= ff_zigzag248_direct[i];