1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-30 00:36:36 -04:00
sdrangel/sdrbase/dsp/fftwengine.h

45 lines
821 B
C
Raw Normal View History

#ifndef INCLUDE_FFTWENGINE_H
#define INCLUDE_FFTWENGINE_H
#include <QMutex>
2020-03-12 01:27:38 -04:00
#include <QString>
#include <fftw3.h>
#include <list>
#include "dsp/fftengine.h"
#include "export.h"
2018-03-03 14:23:38 -05:00
class SDRBASE_API FFTWEngine : public FFTEngine {
public:
2020-03-12 01:27:38 -04:00
FFTWEngine(const QString& fftWisdomFileName);
2020-03-13 02:46:08 -04:00
virtual ~FFTWEngine();
2020-03-13 02:46:08 -04:00
virtual void configure(int n, bool inverse);
virtual void transform();
2020-03-13 02:46:08 -04:00
virtual Complex* in();
virtual Complex* out();
virtual void setReuse(bool reuse) { m_reuse = reuse; }
protected:
static QMutex m_globalPlanMutex;
2020-03-12 01:27:38 -04:00
QString m_fftWisdomFileName;
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;
2020-03-13 02:46:08 -04:00
bool m_reuse;
void freeAll();
};
#endif // INCLUDE_FFTWENGINE_H