[FFmpeg-cvslog] dct-test: Add the missing ff_ prefix to the altivec functions

Martin Storsjö git at videolan.org
Sun Feb 19 02:19:06 CET 2012


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Fri Feb 17 23:12:25 2012 +0200| [07333750592e983f8c382491c48f7b402213cca9] | committer: Martin Storsjö

dct-test: Add the missing ff_ prefix to the altivec functions

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=07333750592e983f8c382491c48f7b402213cca9
---

 libavcodec/dct-test.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index 2c59cd9..1787ef6 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -53,8 +53,8 @@ void ff_bfin_idct(DCTELEM *block);
 void ff_bfin_fdct(DCTELEM *block);
 
 // ALTIVEC
-void fdct_altivec(DCTELEM *block);
-//void idct_altivec(DCTELEM *block);?? no routine
+void ff_fdct_altivec(DCTELEM *block);
+//void ff_idct_altivec(DCTELEM *block);?? no routine
 
 // ARM
 void ff_j_rev_dct_arm(DCTELEM *data);
@@ -95,7 +95,7 @@ static const struct algo fdct_tab[] = {
 #endif
 
 #if HAVE_ALTIVEC
-    { "altivecfdct",    fdct_altivec,          NO_PERM,   AV_CPU_FLAG_ALTIVEC },
+    { "altivecfdct",    ff_fdct_altivec,       NO_PERM,   AV_CPU_FLAG_ALTIVEC },
 #endif
 
 #if ARCH_BFIN



More information about the ffmpeg-cvslog mailing list