Commit 0f155c86 authored by Michael Niedermayer's avatar Michael Niedermayer

fate: trying to fix "libavcodec/dct-test.o:(.rodata+0xdc): undefined reference to fdct_altivec"

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 28ba1027
...@@ -53,7 +53,7 @@ void ff_bfin_idct(DCTELEM *block); ...@@ -53,7 +53,7 @@ void ff_bfin_idct(DCTELEM *block);
void ff_bfin_fdct(DCTELEM *block); void ff_bfin_fdct(DCTELEM *block);
// ALTIVEC // ALTIVEC
void fdct_altivec(DCTELEM *block); void ff_fdct_altivec(DCTELEM *block);
//void idct_altivec(DCTELEM *block);?? no routine //void idct_altivec(DCTELEM *block);?? no routine
// ARM // ARM
...@@ -95,7 +95,7 @@ static const struct algo fdct_tab[] = { ...@@ -95,7 +95,7 @@ static const struct algo fdct_tab[] = {
#endif #endif
#if HAVE_ALTIVEC #if HAVE_ALTIVEC
{ "altivecfdct", fdct_altivec, NO_PERM, AV_CPU_FLAG_ALTIVEC }, { "altivecfdct", ff_fdct_altivec, NO_PERM, AV_CPU_FLAG_ALTIVEC },
#endif #endif
#if ARCH_BFIN #if ARCH_BFIN
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment