diff options
author | Martin Storsjö <martin@martin.st> | 2012-02-17 23:12:25 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-02-18 00:22:25 +0200 |
commit | 07333750592e983f8c382491c48f7b402213cca9 (patch) | |
tree | 36f9ba403091dcd02542c5f6680a110aa0a74bef | |
parent | 89baf35996a0feb8cf81535f74cef2946a92d477 (diff) | |
download | ffmpeg-07333750592e983f8c382491c48f7b402213cca9.tar.gz |
dct-test: Add the missing ff_ prefix to the altivec functions
Signed-off-by: Martin Storsjö <martin@martin.st>
-rw-r--r-- | libavcodec/dct-test.c | 6 |
1 files 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 |