getting ready for v100

This commit is contained in:
Mark Borgerding
2003-12-15 03:23:46 +00:00
parent 573536f48f
commit 6b23ebb5c1
13 changed files with 331 additions and 69 deletions

12
test/kiss_fft2d.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef KISS_FFT2D_H
#define KISS_FFT2D_H
#include "kiss_fft.h"
/* allocate a 2-dimensional FFT
the data should be stored rowwise,
in other words, an array made up of row[0], then row[1], etc
*/
void * kiss_fft2d_alloc(int nrows,int ncols,int inverse_fft,void * mem,size_t * lenmem);
void kiss_fft2d(const void* cfg_from_alloc , const kiss_fft_cpx *fin,kiss_fft_cpx *fout );
#endif