From 07333750592e983f8c382491c48f7b402213cca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= Date: Fri, 17 Feb 2012 23:12:25 +0200 Subject: [PATCH] dct-test: Add the missing ff_ prefix to the altivec functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- libavcodec/dct-test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/dct-test.c b/libavcodec/dct-test.c index 2c59cd99b5..1787ef668a 100644 --- a/libavcodec/dct-test.c +++ b/libavcodec/dct-test.c @@ -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