| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | #ifndef INCLUDE_FFTWENGINE_H
 | 
					
						
							|  |  |  | #define INCLUDE_FFTWENGINE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QMutex>
 | 
					
						
							|  |  |  | #include <fftw3.h>
 | 
					
						
							|  |  |  | #include <list>
 | 
					
						
							|  |  |  | #include "dsp/fftengine.h"
 | 
					
						
							| 
									
										
										
										
											2018-03-20 13:49:21 +01:00
										 |  |  | #include "export.h"
 | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-03 20:23:38 +01:00
										 |  |  | class SDRBASE_API FFTWEngine : public FFTEngine { | 
					
						
							| 
									
										
										
										
											2014-05-18 16:52:39 +01: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
 |