summaryrefslogtreecommitdiffstats
path: root/sdrbase/dsp/fftengine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sdrbase/dsp/fftengine.cpp')
-rw-r--r--sdrbase/dsp/fftengine.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/sdrbase/dsp/fftengine.cpp b/sdrbase/dsp/fftengine.cpp
index fe431b1..bc93380 100644
--- a/sdrbase/dsp/fftengine.cpp
+++ b/sdrbase/dsp/fftengine.cpp
@@ -5,6 +5,9 @@
#ifdef USE_FFTW
#include "dsp/fftwengine.h"
#endif // USE_FFTW
+#ifdef USE_FFTS
+#include "dsp/fftsengine.h"
+#endif // USE_FFTS
FFTEngine::~FFTEngine()
{
@@ -20,7 +23,10 @@ FFTEngine* FFTEngine::create()
qDebug("FFT: using KissFFT engine");
return new KissEngine;
#endif // USE_KISSFFT
-
+#ifdef USE_FFTS
+ qDebug("FFT: using FFTS engine");
+ return new FFTSEngine;
+#endif // USE_FFTS
qCritical("FFT: no engine built");
return NULL;
}