Is there anybody who knows how I can replace these APIs from fftw by Kiss-fft APIs?
fftw_plan fftw_plan_dft_r2c_2d(int n0, int n1,double *in, fftw_complex *out,unsigned flags);
fftw_plan fftw_plan_dft_c2r_1d(int n0,fftw_complex *in, double *out,unsigned flags);
For the first case (2D real-to-complex FFT) you need to use the API in
tools/kiss_fftndr.h
:For the second case (1D complex-to-real FFT) you need to use the API in
tools/kiss_fftr.h
: