blob: fb7bedee48ed3f32b9d2e9f6a9b46effe83c00e2 [file] [log] [blame]
Tom Tsou35222292016-06-22 16:16:30 -07001#ifndef _FFT_H_
2#define _FFT_H_
3
4struct fft_hdl;
5
6struct fft_hdl *init_fft(int reverse, int m, int istride, int ostride,
7 float *in, float *out, int ooffset);
8void *fft_malloc(size_t size);
9void fft_free(void *ptr);
10void free_fft(struct fft_hdl *hdl);
11int cxvec_fft(struct fft_hdl *hdl);
12
13#endif /* _FFT_H_ */