summaryrefslogtreecommitdiff
path: root/apps/codecs
diff options
context:
space:
mode:
authorDave Hooper <dave@beermex.com>2010-02-17 00:56:57 +0000
committerDave Hooper <dave@beermex.com>2010-02-17 00:56:57 +0000
commita5ca79edb58a5caac82ce0fb39051f1727b07e9e (patch)
tree2c1d0a160fe3f1de36e8fb251e2194d8a209b0ae /apps/codecs
parent42774d3128b91d5a37344cb40d56d3c4d147e5f2 (diff)
downloadrockbox-a5ca79edb58a5caac82ce0fb39051f1727b07e9e.tar.gz
rockbox-a5ca79edb58a5caac82ce0fb39051f1727b07e9e.zip
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')
-rw-r--r--apps/codecs/lib/fft-ffmpeg.c4
1 files changed, 2 insertions, 2 deletions
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 @@
49#include "codeclib_misc.h" 49#include "codeclib_misc.h"
50#include "mdct_lookup.h" 50#include "mdct_lookup.h"
51 51
52static void ff_fft_permute_c(FFTContext *s, FFTComplex *z);
53
54/* constants for fft_16 (same constants as in mdct_arm.S ... ) */ 52/* constants for fft_16 (same constants as in mdct_arm.S ... ) */
55#define cPI1_8 (0x7641af3d) /* cos(pi/8) s.31 */ 53#define cPI1_8 (0x7641af3d) /* cos(pi/8) s.31 */
56#define cPI2_8 (0x5a82799a) /* cos(2pi/8) = 1/sqrt(2) s.31 */ 54#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)
70 else return split_radix_permutation(i, m, inverse)*4 - 1; 68 else return split_radix_permutation(i, m, inverse)*4 - 1;
71} 69}
72 70
71#if 0
73static void ff_fft_permute_c(FFTContext *s, FFTComplex *z) 72static void ff_fft_permute_c(FFTContext *s, FFTComplex *z)
74{ 73{
75 int j, k, np; 74 int j, k, np;
@@ -89,6 +88,7 @@ static void ff_fft_permute_c(FFTContext *s, FFTComplex *z)
89 } 88 }
90 } 89 }
91} 90}
91#endif
92 92
93#define BF(x,y,a,b) {\ 93#define BF(x,y,a,b) {\
94 x = a - b;\ 94 x = a - b;\