2014-05-18 15:52:39 +00:00
|
|
|
#ifndef INCLUDE_FFTENGINE_H
|
|
|
|
#define INCLUDE_FFTENGINE_H
|
|
|
|
|
|
|
|
#include "dsp/dsptypes.h"
|
2018-03-20 12:49:21 +00:00
|
|
|
#include "export.h"
|
2014-05-18 15:52:39 +00:00
|
|
|
|
2018-03-03 19:23:38 +00:00
|
|
|
class SDRBASE_API FFTEngine {
|
2014-05-18 15:52:39 +00:00
|
|
|
public:
|
|
|
|
virtual ~FFTEngine();
|
|
|
|
|
|
|
|
virtual void configure(int n, bool inverse) = 0;
|
|
|
|
virtual void transform() = 0;
|
|
|
|
|
|
|
|
virtual Complex* in() = 0;
|
|
|
|
virtual Complex* out() = 0;
|
|
|
|
|
|
|
|
static FFTEngine* create();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // INCLUDE_FFTENGINE_H
|