diff options
author | John Glover <glover.john@gmail.com> | 2010-10-21 13:39:28 +0100 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-10-21 13:39:28 +0100 |
commit | ce65c30264be9683dd3a59b35730d2f31e02d37f (patch) | |
tree | 90aaf2e77526af9ba099e76175956d0dd6a37633 /sndobj/FFT.h | |
parent | b46b988f164f983fc889c7bc0c96953e4609d27a (diff) | |
download | simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.gz simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.tar.bz2 simpl-ce65c30264be9683dd3a59b35730d2f31e02d37f.zip |
Changed from floats to doubles in the C/C++ code, makes Python integration a bit easier. Fixed a bug that would cause SndObjSynthesis to crash if peak values were floats.
Diffstat (limited to 'sndobj/FFT.h')
-rw-r--r-- | sndobj/FFT.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sndobj/FFT.h b/sndobj/FFT.h index 9858fa4..f8aa97e 100644 --- a/sndobj/FFT.h +++ b/sndobj/FFT.h @@ -45,20 +45,20 @@ class FFT : public SndObj { int m_halfsize; // 1/2 fftsize int *m_counter; // counter rfftw_plan m_plan; // FFTW initialisation - float m_fund; + double m_fund; - float m_scale; // scaling factor - float m_norm; // norm factor + double m_scale; // scaling factor + double m_norm; // norm factor int m_frames; // frame overlaps - float** m_sigframe; // signal frames - float* m_ffttmp; // tmp vector for fft transform + double** m_sigframe; // signal frames + double* m_ffttmp; // tmp vector for fft transform int m_cur; // index into current frame Table* m_table; // window private: // fft wrapper method - void inline fft(float* signal); + void inline fft(double* signal); // reset memory and initialisation void ReInit(); @@ -66,9 +66,9 @@ class FFT : public SndObj { public: FFT(); - FFT(Table* window, SndObj* input, float scale=1.f, + FFT(Table* window, SndObj* input, double scale=1.f, int fftsize=DEF_FFTSIZE, int hopsize=DEF_VECSIZE, - float m_sr=DEF_SR); + double m_sr=DEF_SR); ~FFT(); @@ -76,8 +76,8 @@ class FFT : public SndObj { int GetHopSize() { return m_hopsize; } void SetWindow(Table* window){ m_table = window;} int Connect(char* mess, void* input); - int Set(char* mess, float value); - void SetScale(float scale){ m_scale = scale; m_norm = m_fftsize/m_scale;} + int Set(char* mess, double value); + void SetScale(double scale){ m_scale = scale; m_norm = m_fftsize/m_scale;} virtual void SetFFTSize(int fftsize); virtual void SetHopSize(int hopsize); |