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/AdSyn.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sndobj/AdSyn.h') diff --git a/sndobj/AdSyn.h b/sndobj/AdSyn.h index 61750e4..1d62d01 100644 --- a/sndobj/AdSyn.h +++ b/sndobj/AdSyn.h @@ -31,8 +31,8 @@ class AdSyn : public ReSyn { AdSyn(); AdSyn(SinAnal* input, int maxtracks, Table* table, - float pitch = 1.f, float scale=1.f, - int vecsize=DEF_VECSIZE, float sr=DEF_SR); + double pitch = 1.f, double scale=1.f, + int vecsize=DEF_VECSIZE, double sr=DEF_SR); ~AdSyn(); short DoProcess(); }; -- cgit v1.2.3