diff options
author | John Glover <j@johnglover.net> | 2012-08-21 18:31:07 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-08-21 18:31:07 +0100 |
commit | 39e0005e226ed6f04562e9d5d7548782fef81c20 (patch) | |
tree | 5f4b23a8563a47ac8740525acc2f96565e88d002 /src/sndobj/FFT.h | |
parent | 4f0a4f251ddbc466f14200202eff2213e30a5919 (diff) | |
download | simpl-39e0005e226ed6f04562e9d5d7548782fef81c20.tar.gz simpl-39e0005e226ed6f04562e9d5d7548782fef81c20.tar.bz2 simpl-39e0005e226ed6f04562e9d5d7548782fef81c20.zip |
[sndobj] Update SndObj to use FFTW v3 (was using v2). Remove unused SndObj files. Whitespace clean up.
Diffstat (limited to 'src/sndobj/FFT.h')
-rw-r--r-- | src/sndobj/FFT.h | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/src/sndobj/FFT.h b/src/sndobj/FFT.h index 9b8c78e..1f8212b 100644 --- a/src/sndobj/FFT.h +++ b/src/sndobj/FFT.h @@ -1,4 +1,3 @@ - //////////////////////////////////////////////////////////////////////// // This file is part of the SndObj library // @@ -31,12 +30,10 @@ #define _FFT_H #include "SndObj.h" #include "Table.h" -#include <rfftw/rfftw.h> +#include <fftw3.h> class FFT : public SndObj { - protected: - // m_vecsize is FFT size // m_hopsize should always be set to the time-domain // vector size @@ -44,14 +41,15 @@ class FFT : public SndObj { int m_hopsize; // hopsize int m_halfsize; // 1/2 fftsize int *m_counter; // counter - rfftw_plan m_plan; // FFTW initialisation + double* m_fftIn; + fftw_complex* m_fftOut; + fftw_plan m_plan; double m_fund; double m_scale; // scaling factor double m_norm; // norm factor int m_frames; // frame overlaps double** m_sigframe; // signal frames - double* m_ffttmp; // tmp vector for fft transform int m_cur; // index into current frame Table* m_table; // window @@ -59,17 +57,14 @@ class FFT : public SndObj { private: // fft wrapper method void inline fft(double* signal); - // reset memory and initialisation void ReInit(); public: - FFT(); FFT(Table* window, SndObj* input, double scale=1.f, int fftsize=DEF_FFTSIZE, int hopsize=DEF_VECSIZE, double m_sr=DEF_SR); - ~FFT(); int GetFFTSize() { return m_fftsize; } @@ -82,12 +77,6 @@ class FFT : public SndObj { virtual void SetHopSize(int hopsize); short DoProcess(); - }; #endif - - - - - |