Mercurial > hg > constant-q-cpp
annotate src/ext/kissfft/tools/kiss_fftnd.h @ 196:da283326bcd3 tip master
Update plugin versions in RDF
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 28 Feb 2020 09:43:02 +0000 |
parents | 5ed6e970541b |
children |
rev | line source |
---|---|
c@174 | 1 #ifndef KISS_FFTND_H |
c@174 | 2 #define KISS_FFTND_H |
c@174 | 3 |
c@174 | 4 #include "kiss_fft.h" |
c@174 | 5 |
c@174 | 6 #ifdef __cplusplus |
c@174 | 7 extern "C" { |
c@174 | 8 #endif |
c@174 | 9 |
c@174 | 10 typedef struct kiss_fftnd_state * kiss_fftnd_cfg; |
c@174 | 11 |
c@174 | 12 kiss_fftnd_cfg kiss_fftnd_alloc(const int *dims,int ndims,int inverse_fft,void*mem,size_t*lenmem); |
c@174 | 13 void kiss_fftnd(kiss_fftnd_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout); |
c@174 | 14 |
c@174 | 15 #ifdef __cplusplus |
c@174 | 16 } |
c@174 | 17 #endif |
c@174 | 18 #endif |