00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef IFFT_H
00020 #define IFFT_H
00021
00022 #include "Typedefs.h"
00023 #include "Debug.h"
00024
00025 #include <fftw3.h>
00026
00055 class IFFT{
00056 protected:
00057 int _fftSize;
00058 bool _zeroPhase;
00059
00060 int _halfSize;
00061
00062 fftwf_complex* _in;
00063 Real* _out;
00064
00065 fftwf_plan _fftplan;
00066
00067
00068 public:
00080 IFFT(int fftSize = 1024, bool zeroPhase = true);
00081
00085 ~IFFT();
00086
00105 void process(const MatrixXC& fft, MatrixXR* frame);
00106
00107 void setup();
00108 void reset();
00109
00115 int fftSize() const;
00116
00124 void setFftSize( int size, bool callSetup = true );
00125
00131 bool zeroPhase() const;
00132
00138 void setZeroPhase( bool zeroPhase, bool callSetup = true );
00139 };
00140
00141 #endif