summaryrefslogtreecommitdiffstats
path: root/libavcodec/dct-test.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-02-16 06:15:40 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-02-16 06:15:40 +0100
commit0f155c860139e8633a41a6198ecceb334668a132 (patch)
treeb7448c2a58f76dc9a7747dceb1c11ed06b3276a7 /libavcodec/dct-test.c
parent28ba1027ec1dea1a55f9e940779f75417ce4798d (diff)
downloadffmpeg-streaming-0f155c860139e8633a41a6198ecceb334668a132.zip
ffmpeg-streaming-0f155c860139e8633a41a6198ecceb334668a132.tar.gz
fate: trying to fix "libavcodec/dct-test.o:(.rodata+0xdc): undefined reference to fdct_altivec"
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
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 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
OpenPOWER on IntegriCloud