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/IFGram.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/IFGram.h')
-rw-r--r-- | sndobj/IFGram.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sndobj/IFGram.h b/sndobj/IFGram.h index aab5c44..c404190 100644 --- a/sndobj/IFGram.h +++ b/sndobj/IFGram.h @@ -36,24 +36,24 @@ class IFGram : public PVA { protected: - float* m_diffwin; // difference window - float* m_fftdiff; // holds fft of diff window - float* m_diffsig; - float* m_pdiff; + double* m_diffwin; // difference window + double* m_fftdiff; // holds fft of diff window + double* m_diffsig; + double* m_pdiff; private: - void inline IFAnalysis(float* signal); + void inline IFAnalysis(double* signal); public: IFGram(); - IFGram(Table* window, SndObj* input, float scale=1.f, - int fftsize=DEF_FFTSIZE, int hopsize=DEF_VECSIZE, float sr=DEF_SR); + IFGram(Table* window, SndObj* input, double scale=1.f, + int fftsize=DEF_FFTSIZE, int hopsize=DEF_VECSIZE, double sr=DEF_SR); ~IFGram(); - int Set(char* mess, float value); + int Set(char* mess, double value); int Connect(char* mess, void* input); void SetFFTSize(int fftsize); short DoProcess(); |