Mercurial > hg > qm-dsp
annotate ext/kissfft/tools/kiss_fftnd.h @ 416:1f3244a6884c
Add filter test
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 07 Oct 2015 10:07:30 +0100 |
parents | 1f1999b0f577 |
children |
rev | line source |
---|---|
c@409 | 1 #ifndef KISS_FFTND_H |
c@409 | 2 #define KISS_FFTND_H |
c@409 | 3 |
c@409 | 4 #include "kiss_fft.h" |
c@409 | 5 |
c@409 | 6 #ifdef __cplusplus |
c@409 | 7 extern "C" { |
c@409 | 8 #endif |
c@409 | 9 |
c@409 | 10 typedef struct kiss_fftnd_state * kiss_fftnd_cfg; |
c@409 | 11 |
c@409 | 12 kiss_fftnd_cfg kiss_fftnd_alloc(const int *dims,int ndims,int inverse_fft,void*mem,size_t*lenmem); |
c@409 | 13 void kiss_fftnd(kiss_fftnd_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout); |
c@409 | 14 |
c@409 | 15 #ifdef __cplusplus |
c@409 | 16 } |
c@409 | 17 #endif |
c@409 | 18 #endif |