diff options
Diffstat (limited to 'src/OfdmGenerator.h')
-rw-r--r-- | src/OfdmGenerator.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/OfdmGenerator.h b/src/OfdmGenerator.h index ec9f14a..061ad91 100644 --- a/src/OfdmGenerator.h +++ b/src/OfdmGenerator.h @@ -2,7 +2,7 @@ Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 Her Majesty the Queen in Right of Canada (Communications Research Center Canada) - Copyright (C) 2014 + Copyright (C) 2016 Matthias P. Braendli, matthias.braendli@mpb.li http://opendigitalradio.org @@ -34,12 +34,7 @@ #include "porting.h" #include "ModCodec.h" -#if USE_FFTW -# include "fftw3.h" -#else -# include "kiss_fftsimd.h" -# include <kiss_fft.h> -#endif +#include "fftw3.h" #include <sys/types.h> @@ -57,13 +52,8 @@ public: const char* name() { return "OfdmGenerator"; } protected: -#if USE_FFTW fftwf_plan myFftPlan; fftwf_complex *myFftIn, *myFftOut; -#else - FFT_PLAN myFftPlan; - FFT_TYPE *myFftBuffer; -#endif size_t myNbSymbols; size_t myNbCarriers; size_t mySpacing; |