[FFmpeg-cvslog] fate: trying to fix "libavcodec/dct-test.o:(.rodata+0xdc): undefined reference to fdct_altivec"
Michael Niedermayer
git at videolan.org
Thu Feb 16 06:38:11 CET 2012
ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Thu Feb 16 06:15:40 2012 +0100| [0f155c860139e8633a41a6198ecceb334668a132] | committer: Michael Niedermayer
fate: trying to fix "libavcodec/dct-test.o:(.rodata+0xdc): undefined reference to fdct_altivec"
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0f155c860139e8633a41a6198ecceb334668a132
---
libavcodec/dct-test.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c
index 847cc68..5a27b75 100644
--- a/libavcodec/dct-test.c
+++ b/libavcodec/dct-test.c
@@ -53,7 +53,7 @@ void ff_bfin_idct(DCTELEM *block);
void ff_bfin_fdct(DCTELEM *block);
// ALTIVEC
-void fdct_altivec(DCTELEM *block);
+void ff_fdct_altivec(DCTELEM *block);
//void idct_altivec(DCTELEM *block);?? no routine
// ARM
@@ -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