summaryrefslogtreecommitdiffstats
path: root/include-gpl/dsp/fftwengine.h
blob: 2da5317662d6465df9e90ebf5aae4e29f008f5d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#ifndef INCLUDE_FFTWENGINE_H
#define INCLUDE_FFTWENGINE_H

#include <fftw3.h>
#include <list>
#include "dsp/fftengine.h"

class FFTWEngine : public FFTEngine {
public:
	FFTWEngine();
	~FFTWEngine();

	void configure(int n, bool inverse);
	void transform();

	Complex* in();
	Complex* out();

protected:
	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