mirror of
https://github.com/mborgerding/kissfft.git
synced 2025-07-17 20:44:21 -04:00
added some code for 32 bit fixed point fft -- may not be suitable for all platforms
This commit is contained in:
@ -25,7 +25,7 @@ struct kiss_fftnd_state{
|
||||
kiss_fft_cpx * tmpbuf; /*buffer capable of hold the entire buffer */
|
||||
};
|
||||
|
||||
kiss_fftnd_cfg kiss_fftnd_alloc(int *dims,int ndims,int inverse_fft,void*mem,size_t*lenmem)
|
||||
kiss_fftnd_cfg kiss_fftnd_alloc(const int *dims,int ndims,int inverse_fft,void*mem,size_t*lenmem)
|
||||
{
|
||||
kiss_fftnd_cfg st = NULL;
|
||||
int i;
|
||||
|
@ -9,7 +9,7 @@ extern "C" {
|
||||
|
||||
typedef struct kiss_fftnd_state * kiss_fftnd_cfg;
|
||||
|
||||
kiss_fftnd_cfg kiss_fftnd_alloc(int *dims,int ndims,int inverse_fft,void*mem,size_t*lenmem);
|
||||
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
|
||||
|
Reference in New Issue
Block a user