diff options
author | Dave Hooper <dave@beermex.com> | 2010-02-17 01:09:45 +0000 |
---|---|---|
committer | Dave Hooper <dave@beermex.com> | 2010-02-17 01:09:45 +0000 |
commit | eb943e9495809c1ba167d6f070dcfd1e098623d6 (patch) | |
tree | 090b5b21d84624e10089bb9da904d3f521bfda57 /apps/codecs | |
parent | 7f01b7479a3ddac72b52bdd376522a1812d359ad (diff) |
split_radix_permutation also unused (since now a hardcoded table) - but left intact so we can/could regenerate the table
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24716 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/codecs')
-rw-r--r-- | apps/codecs/lib/fft-ffmpeg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/lib/fft-ffmpeg.c b/apps/codecs/lib/fft-ffmpeg.c index e8a5229891..23cf8b8aed 100644 --- a/apps/codecs/lib/fft-ffmpeg.c +++ b/apps/codecs/lib/fft-ffmpeg.c @@ -57,6 +57,7 @@ /* asm-optimised functions and/or macros */ #include "fft-ffmpeg_arm.h" +#if 0 static int split_radix_permutation(int i, int n, int inverse) { int m; @@ -68,7 +69,6 @@ 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; |