2014-05-18 11:52:39 -04:00
|
|
|
#ifndef INCLUDE_FFTWENGINE_H
|
|
|
|
#define INCLUDE_FFTWENGINE_H
|
|
|
|
|
|
|
|
#include <QMutex>
|
|
|
|
#include <fftw3.h>
|
|
|
|
#include <list>
|
|
|
|
#include "dsp/fftengine.h"
|
2018-03-20 08:49:21 -04:00
|
|
|
#include "export.h"
|
2014-05-18 11:52:39 -04:00
|
|
|
|
2018-03-03 14:23:38 -05:00
|
|
|
class SDRBASE_API FFTWEngine : public FFTEngine {
|
2014-05-18 11:52:39 -04:00
|
|
|
public:
|
|
|
|
FFTWEngine();
|
|
|
|
~FFTWEngine();
|
|
|
|
|
|
|
|
void configure(int n, bool inverse);
|
|
|
|
void transform();
|
|
|
|
|
|
|
|
Complex* in();
|
|
|
|
Complex* out();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static QMutex m_globalPlanMutex;
|
|
|
|
|
|
|
|
struct Plan {
|
|
|
|
int n;
|
|
|
|
bool inverse;
|
|
|
|
fftwf_plan plan;
|
|
|
|
fftwf_complex* in;
|
|
|
|
fftwf_complex* out;
|
|
|
|
};
|
|
|
|
typedef std::list<Plan*> Plans;
|
|
|
|
Plans m_plans;
|
|
|
|
Plan* m_currentPlan;
|
|
|
|
|
|
|
|
void freeAll();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_FFTWENGINE_H
|