RetroArch
|
Go to the source code of this file.
Typedefs | |
typedef struct fft | fft_t |
Functions | |
fft_t * | fft_new (unsigned block_size_log2) |
void | fft_free (fft_t *fft) |
void | fft_process_forward_complex (fft_t *fft, fft_complex_t *out, const fft_complex_t *in, unsigned step) |
void | fft_process_forward (fft_t *fft, fft_complex_t *out, const float *in, unsigned step) |
void | fft_process_inverse (fft_t *fft, float *out, const fft_complex_t *in, unsigned step) |
fft_t* fft_new | ( | unsigned | block_size_log2 | ) |
void fft_process_forward | ( | fft_t * | fft, |
fft_complex_t * | out, | ||
const float * | in, | ||
unsigned | step | ||
) |
void fft_process_forward_complex | ( | fft_t * | fft, |
fft_complex_t * | out, | ||
const fft_complex_t * | in, | ||
unsigned | step | ||
) |
void fft_process_inverse | ( | fft_t * | fft, |
float * | out, | ||
const fft_complex_t * | in, | ||
unsigned | step | ||
) |