00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef FFT_H
00020 #define FFT_H
00021
00022 #include "Typedefs.h"
00023 #include "Debug.h"
00024
00025 #include <fftw3.h>
00026
00053 class FFT{
00054 protected:
00055 int _fftSize;
00056 bool _zeroPhase;
00057
00058 int _halfSize;
00059
00060 Real* _in;
00061 fftwf_complex* _out;
00062 fftwf_plan _fftplan;
00063
00064
00065 public:
00077 FFT(int fftSize = 1024, bool zeroPhase = true);
00078
00082 ~FFT();
00083
00097 void process(const MatrixXR& frames, MatrixXC* fft);
00098
00099 void setup();
00100 void reset();
00101
00107 int fftSize() const;
00108
00116 void setFftSize( int size, bool callSetup = true );
00117
00123 bool zeroPhase() const;
00124
00130 void setZeroPhase( bool zeroPhase, bool callSetup = true );
00131
00132 };
00133
00134 #endif