Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-02-16 09:15:40 +0400
committerMichael Niedermayer <michaelni@gmx.at>2012-02-16 09:15:40 +0400
commit0f155c860139e8633a41a6198ecceb334668a132 (patch)
treeb7448c2a58f76dc9a7747dceb1c11ed06b3276a7 /libavcodec/dct-test.c
parent28ba1027ec1dea1a55f9e940779f75417ce4798d (diff)
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 847cc68b2a..5a27b756b7 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