summaryrefslogtreecommitdiff
path: root/sndobj/SndIO.cpp
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
committerJohn Glover <glover.john@gmail.com>2010-10-21 13:39:28 +0100
commitce65c30264be9683dd3a59b35730d2f31e02d37f (patch)
tree90aaf2e77526af9ba099e76175956d0dd6a37633 /sndobj/SndIO.cpp
parentb46b988f164f983fc889c7bc0c96953e4609d27a (diff)
downloadsimpl-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/SndIO.cpp')
-rw-r--r--sndobj/SndIO.cpp4
1 files changed, 2 insertions, 2 deletions
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();