summaryrefslogtreecommitdiff
path: root/libavcodec/dct-test.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/dct-test.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/dct-test.c')
-rw-r--r--libavcodec/dct-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index 451e92da75..3d4a212097 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -91,7 +91,7 @@ struct algo algos[] = {
DCT_ERROR("IJG-LLM-INT", 0, ff_jpeg_fdct_islow, fdct, NO_PERM),
DCT_ERROR("REF-DBL", 1, idct, idct, NO_PERM),
DCT_ERROR("INT", 1, j_rev_dct, idct, MMX_PERM),
- DCT_ERROR("SIMPLE-C", 1, simple_idct, idct, NO_PERM),
+ DCT_ERROR("SIMPLE-C", 1, ff_simple_idct, idct, NO_PERM),
#ifdef HAVE_MMX
DCT_ERROR("MMX", 0, ff_fdct_mmx, fdct, NO_PERM),
@@ -559,7 +559,7 @@ int main(int argc, char **argv)
printf("ffmpeg DCT/IDCT test\n");
if (test_248_dct) {
- idct248_error("SIMPLE-C", simple_idct248_put);
+ idct248_error("SIMPLE-C", ff_simple_idct248_put);
} else {
for (i=0;algos[i].name;i++)
if (algos[i].is_idct == test_idct) {