summaryrefslogtreecommitdiff
path: root/apps/plugins/fft/kiss_fftr.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/fft/kiss_fftr.c')
-rw-r--r--apps/plugins/fft/kiss_fftr.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/plugins/fft/kiss_fftr.c b/apps/plugins/fft/kiss_fftr.c
index 7fa29b98e8..dc7eab756a 100644
--- a/apps/plugins/fft/kiss_fftr.c
+++ b/apps/plugins/fft/kiss_fftr.c
@@ -48,12 +48,11 @@ kiss_fftr_cfg kiss_fftr_alloc(int nfft,int inverse_fft,void * mem,size_t * lenme
48 for (i = 0; i < nfft/2; ++i) { 48 for (i = 0; i < nfft/2; ++i) {
49 /*double phase = 49 /*double phase =
50 -3.14159265358979323846264338327 * ((double) (i+1) / nfft + .5);*/ 50 -3.14159265358979323846264338327 * ((double) (i+1) / nfft + .5);*/
51 if (inverse_fft) 51 if (inverse_fft) {
52 {
53 DEBUGF("Inverse FFT not implemented!"); /*phase *= -1;*/ 52 DEBUGF("Inverse FFT not implemented!"); /*phase *= -1;*/
54 } 53 }
55 54
56 kf_cexp_round (st->super_twiddles+i, i+1, nfft); 55 kf_cexp_round (st->super_twiddles+i, i+1, nfft);
57 } 56 }
58 return st; 57 return st;
59} 58}