diff audioio/PhaseVocoderTimeStretcher.h @ 100:f3516e520652

* Add non-fftw3 fft alternative
author Chris Cannam
date Fri, 09 Feb 2007 11:32:34 +0000
parents bedc7517b6e8
children
line wrap: on
line diff
--- a/audioio/PhaseVocoderTimeStretcher.h	Wed Feb 07 14:21:14 2007 +0000
+++ b/audioio/PhaseVocoderTimeStretcher.h	Fri Feb 09 11:32:34 2007 +0000
@@ -19,7 +19,7 @@
 #include "base/Window.h"
 #include "base/RingBuffer.h"
 
-#include <fftw3.h>
+#include "data/fft/FFTapi.h"
 
 #include <QMutex>
 
@@ -172,9 +172,9 @@
 
     float *m_tempbuf;
     float **m_time;
-    fftwf_complex **m_freq;
-    fftwf_plan *m_plan;
-    fftwf_plan *m_iplan;
+    fftf_complex **m_freq;
+    fftf_plan *m_plan;
+    fftf_plan *m_iplan;
     
     RingBuffer<float> **m_inbuf;
     RingBuffer<float> **m_outbuf;