24extern void fft_forward(
int n,
float *buf,
float *trigcache,
int *sp);
25extern void fft_backward(
int n,
float *buf,
float *trigcache,
int *sp);
26extern void fft_i(
int n,
float **trigcache,
int **splitcache);
void fft_backward(int n, float *buf, float *trigcache, int *sp)
Definition: smallft.c:534
void fft_i(int n, float **trigcache, int **splitcache)
Definition: smallft.c:555
void fft_forward(int n, float *buf, float *trigcache, int *sp)
Definition: smallft.c:516