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/SndIO.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sndobj/SndIO.cpp') diff --git a/sndobj/SndIO.cpp b/sndobj/SndIO.cpp index 1e7b72c..6f79feb 100644 --- a/sndobj/SndIO.cpp +++ b/sndobj/SndIO.cpp @@ -31,7 +31,7 @@ SndIO::SndIO(short channels, short bits, SndObj** inputlist, - int vecsize, float sr){ + int vecsize, double sr){ int n; m_channels = channels; @@ -78,7 +78,7 @@ SndIO::SndIO(short channels, short bits, SndObj** inputlist, SndIO::SetVectorSize(int vecsize){ m_samples = vecsize*m_channels; if(m_output) delete[] m_output; - if(!(m_output = new float[m_samples])){ + if(!(m_output = new double[m_samples])){ m_error = 1; #ifdef DEBUG cout << ErrorMessage(); -- cgit v1.2.3