Trying to decide what to do about real odd FFTs

This commit is contained in:
Mark Borgerding
2004-01-29 03:26:48 +00:00
parent 49a6ad07e0
commit 80eccb4e3c
3 changed files with 11 additions and 12 deletions

View File

@ -28,7 +28,7 @@ void * kiss_fftr_alloc(int nfft,int inverse_fft,void * mem,size_t * lenmem)
size_t subsize, memneeded;
if (nfft & 1) {
/*fprintf(stderr,"Real FFT optimization must be even.\n"); */
fprintf(stderr,"Real FFT optimization must be even.\n");
return NULL;
}
nfft >>= 1;