From a5ca79edb58a5caac82ce0fb39051f1727b07e9e Mon Sep 17 00:00:00 2001 From: Dave Hooper Date: Wed, 17 Feb 2010 00:56:57 +0000 Subject: Fix yellow (ff_fft_permute_c an unused function in codeclib) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24713 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/lib/fft-ffmpeg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/codecs/lib/fft-ffmpeg.c') diff --git a/apps/codecs/lib/fft-ffmpeg.c b/apps/codecs/lib/fft-ffmpeg.c index f08b7fa2eb..e8a5229891 100644 --- a/apps/codecs/lib/fft-ffmpeg.c +++ b/apps/codecs/lib/fft-ffmpeg.c @@ -49,8 +49,6 @@ #include "codeclib_misc.h" #include "mdct_lookup.h" -static void ff_fft_permute_c(FFTContext *s, FFTComplex *z); - /* constants for fft_16 (same constants as in mdct_arm.S ... ) */ #define cPI1_8 (0x7641af3d) /* cos(pi/8) s.31 */ #define cPI2_8 (0x5a82799a) /* cos(2pi/8) = 1/sqrt(2) s.31 */ @@ -70,6 +68,7 @@ static int split_radix_permutation(int i, int n, int inverse) else return split_radix_permutation(i, m, inverse)*4 - 1; } +#if 0 static void ff_fft_permute_c(FFTContext *s, FFTComplex *z) { int j, k, np; @@ -89,6 +88,7 @@ static void ff_fft_permute_c(FFTContext *s, FFTComplex *z) } } } +#endif #define BF(x,y,a,b) {\ x = a - b;\ -- cgit v1.2.3