From ce65c30264be9683dd3a59b35730d2f31e02d37f Mon Sep 17 00:00:00 2001 From: John Glover Date: Thu, 21 Oct 2010 13:39:28 +0100 Subject: 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. --- sndobj/PVS.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sndobj/PVS.h') diff --git a/sndobj/PVS.h b/sndobj/PVS.h index 7347440..6108055 100644 --- a/sndobj/PVS.h +++ b/sndobj/PVS.h @@ -37,22 +37,22 @@ class PVS : public IFFT { protected: int m_rotcount; // rotation counter - float m_factor; // conversion factor - float* m_phases; // old phases + double m_factor; // conversion factor + double* m_phases; // old phases private: - void inline pvsynthesis(float* signal); + void inline pvsynthesis(double* signal); bool m_first; public: PVS(); PVS(Table* window, SndObj* input, int fftsize=DEF_FFTSIZE, - int hopsize=DEF_VECSIZE, float sr=DEF_SR); + int hopsize=DEF_VECSIZE, double sr=DEF_SR); ~PVS(); - int Set(char* mess, float value); + int Set(char* mess, double value); void SetFFTSize(int fftsize); void SetHopSize(int hopsize); -- cgit v1.2.3