Browse code

ARM: fix dct-test

Originally committed as revision 22339 to svn://svn.ffmpeg.org/ffmpeg/trunk

Måns Rullgård authored on 2010/03/09 04:00:05
Showing 1 changed files
... ...
@@ -58,9 +58,9 @@ void fdct_altivec(DCTELEM *block);
58 58
 //void idct_altivec(DCTELEM *block);?? no routine
59 59
 
60 60
 // ARM
61
-void j_rev_dct_ARM(DCTELEM *data);
62
-void simple_idct_ARM(DCTELEM *data);
63
-void simple_idct_armv5te(DCTELEM *data);
61
+void ff_j_rev_dct_arm(DCTELEM *data);
62
+void ff_simple_idct_arm(DCTELEM *data);
63
+void ff_simple_idct_armv5te(DCTELEM *data);
64 64
 void ff_simple_idct_armv6(DCTELEM *data);
65 65
 void ff_simple_idct_neon(DCTELEM *data);
66 66
 
... ...
@@ -120,10 +120,10 @@ struct algo algos[] = {
120 120
 #endif
121 121
 
122 122
 #if ARCH_ARM
123
-  {"SIMPLE-ARM",      1, simple_idct_ARM,    ff_ref_idct, NO_PERM },
124
-  {"INT-ARM",         1, j_rev_dct_ARM,      ff_ref_idct, MMX_PERM },
123
+  {"SIMPLE-ARM",      1, ff_simple_idct_arm, ff_ref_idct, NO_PERM },
124
+  {"INT-ARM",         1, ff_j_rev_dct_arm,   ff_ref_idct, MMX_PERM },
125 125
 #if HAVE_ARMV5TE
126
-  {"SIMPLE-ARMV5TE",  1, simple_idct_armv5te, ff_ref_idct, NO_PERM },
126
+  {"SIMPLE-ARMV5TE",  1, ff_simple_idct_armv5te, ff_ref_idct, NO_PERM },
127 127
 #endif
128 128
 #if HAVE_ARMV6
129 129
   {"SIMPLE-ARMV6",    1, ff_simple_idct_armv6, ff_ref_idct, MMX_PERM },