diff data/fft/FFTDataServer.h @ 226:a867be73b638

* Add non-fftw3 fft alternative
author Chris Cannam
date Fri, 09 Feb 2007 11:32:34 +0000
parents 7f8ffe65d453
children f1f47660483d
line wrap: on
line diff
--- a/data/fft/FFTDataServer.h	Wed Feb 07 14:21:14 2007 +0000
+++ b/data/fft/FFTDataServer.h	Fri Feb 09 11:32:34 2007 +0000
@@ -19,7 +19,7 @@
 #include "base/Window.h"
 #include "base/Thread.h"
 
-#include <fftw3.h>
+#include "FFTapi.h"
 
 #include <QMutex>
 #include <QWaitCondition>
@@ -159,9 +159,9 @@
     QWaitCondition m_condition;
 
     fftsample *m_fftInput;
-    fftwf_complex *m_fftOutput;
+    fftf_complex *m_fftOutput;
     float *m_workbuffer;
-    fftwf_plan m_fftPlan;
+    fftf_plan m_fftPlan;
 
     class FillThread : public Thread
     {