forked from len0rd/rockbox
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
This commit is contained in:
parent
42774d3128
commit
a5ca79edb5
1 changed files with 2 additions and 2 deletions
|
@ -49,8 +49,6 @@
|
||||||
#include "codeclib_misc.h"
|
#include "codeclib_misc.h"
|
||||||
#include "mdct_lookup.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 ... ) */
|
/* constants for fft_16 (same constants as in mdct_arm.S ... ) */
|
||||||
#define cPI1_8 (0x7641af3d) /* cos(pi/8) s.31 */
|
#define cPI1_8 (0x7641af3d) /* cos(pi/8) s.31 */
|
||||||
#define cPI2_8 (0x5a82799a) /* cos(2pi/8) = 1/sqrt(2) 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;
|
else return split_radix_permutation(i, m, inverse)*4 - 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if 0
|
||||||
static void ff_fft_permute_c(FFTContext *s, FFTComplex *z)
|
static void ff_fft_permute_c(FFTContext *s, FFTComplex *z)
|
||||||
{
|
{
|
||||||
int j, k, np;
|
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) {\
|
#define BF(x,y,a,b) {\
|
||||||
x = a - b;\
|
x = a - b;\
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue