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. --- sms/modify.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sms/modify.c') diff --git a/sms/modify.c b/sms/modify.c index 4e520d1..1afdf82 100644 --- a/sms/modify.c +++ b/sms/modify.c @@ -80,7 +80,7 @@ void sms_freeModify(SMS_ModifyParams *params) * * The values in env2 are overwritten by the new interpolated envelope values. */ -void sms_interpEnvelopes(int sizeEnv, sfloat *env1, sfloat *env2, float interpFactor) +void sms_interpEnvelopes(int sizeEnv, sfloat *env1, sfloat *env2, sfloat interpFactor) { if(sizeEnv <= 0) { @@ -88,7 +88,7 @@ void sms_interpEnvelopes(int sizeEnv, sfloat *env1, sfloat *env2, float interpFa } int i; - float amp1, amp2; + sfloat amp1, amp2; for(i = 0; i < sizeEnv; i++) { @@ -113,7 +113,7 @@ void sms_applyEnvelope(int numPeaks, sfloat *pFreqs, sfloat *pMags, int sizeEnv, } int i, envPos; - float frac, binSize = (float)maxFreq / (float)sizeEnv; + sfloat frac, binSize = (sfloat)maxFreq / (sfloat)sizeEnv; for(i = 0; i < numPeaks; i++) { -- cgit v1.2.3