Commit 07333750 authored by Martin Storsjö's avatar Martin Storsjö

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

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 89baf359
......@@ -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
......
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