Mercurial > hg > constant-q-cpp
view src/ext/kissfft/tools/kiss_fftnd.h @ 181:1ab84ec46c15
Switch to OS/X 10.7 min and libc++ (am generally doing this for lots of stuff now)
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 07 Sep 2015 16:23:29 +0100 |
parents | 5ed6e970541b |
children |
line wrap: on
line source
#ifndef KISS_FFTND_H #define KISS_FFTND_H #include "kiss_fft.h" #ifdef __cplusplus extern "C" { #endif typedef struct kiss_fftnd_state * kiss_fftnd_cfg; kiss_fftnd_cfg kiss_fftnd_alloc(const int *dims,int ndims,int inverse_fft,void*mem,size_t*lenmem); void kiss_fftnd(kiss_fftnd_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout); #ifdef __cplusplus } #endif #endif