summaryrefslogtreecommitdiff
path: root/sms/modify.c
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 /sms/modify.c
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 'sms/modify.c')
-rw-r--r--sms/modify.c6
1 files changed, 3 insertions, 3 deletions
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++)
{