diff options
| author | Dave Hooper <dave@beermex.com> | 2010-02-17 00:56:57 +0000 |
|---|---|---|
| committer | Dave Hooper <dave@beermex.com> | 2010-02-17 00:56:57 +0000 |
| commit | a5ca79edb58a5caac82ce0fb39051f1727b07e9e (patch) | |
| tree | 2c1d0a160fe3f1de36e8fb251e2194d8a209b0ae /apps/codecs/lib | |
| parent | 42774d3128b91d5a37344cb40d56d3c4d147e5f2 (diff) | |
| download | rockbox-a5ca79edb58a5caac82ce0fb39051f1727b07e9e.zip rockbox-a5ca79edb58a5caac82ce0fb39051f1727b07e9e.tar.gz rockbox-a5ca79edb58a5caac82ce0fb39051f1727b07e9e.tar.bz2 rockbox-a5ca79edb58a5caac82ce0fb39051f1727b07e9e.tar.xz | |
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
Diffstat (limited to 'apps/codecs/lib')
| -rw-r--r-- | apps/codecs/lib/fft-ffmpeg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/codecs/lib/fft-ffmpeg.c b/apps/codecs/lib/fft-ffmpeg.c index f08b7fa..e8a5229 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;\ |