summaryrefslogtreecommitdiff
path: root/sms/synthesis.c
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-12-08 16:12:33 +0000
committerJohn Glover <glover.john@gmail.com>2010-12-08 16:12:33 +0000
commit67bd3b7ce79f82b495328c774dc4692d9f6447c9 (patch)
tree3db860c56c426293e1375a78cef57c440ab18b94 /sms/synthesis.c
parentf0576d53f10832adb8a491f85ec86d2219a621bf (diff)
downloadsimpl-67bd3b7ce79f82b495328c774dc4692d9f6447c9.tar.gz
simpl-67bd3b7ce79f82b495328c774dc4692d9f6447c9.tar.bz2
simpl-67bd3b7ce79f82b495328c774dc4692d9f6447c9.zip
Fixed a SMS issue in sms_initSynth where having a hop size that was not a power of 2 would stop execution. Fixed another SMS test.
Diffstat (limited to 'sms/synthesis.c')
-rw-r--r--sms/synthesis.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sms/synthesis.c b/sms/synthesis.c
index 3a8a3bb..c7439f1 100644
--- a/sms/synthesis.c
+++ b/sms/synthesis.c
@@ -182,7 +182,7 @@ void sms_synthesize(SMS_Data *pSmsData, sfloat *pFSynthesis, SMS_SynthParams *p
else if(pSynthParams->iSynthesisType == SMS_STYPE_DET)
{
if(pSynthParams->iDetSynthType == SMS_DET_IFFT)
- SineSynthIFFT (pSmsData, pSynthParams);
+ SineSynthIFFT(pSmsData, pSynthParams);
else /*pSynthParams->iDetSynthType == SMS_DET_SIN*/
{
sms_sineSynthFrame(pSmsData, pSynthParams->pSynthBuff, pSynthParams->sizeHop,
@@ -196,5 +196,3 @@ void sms_synthesize(SMS_Data *pSmsData, sfloat *pFSynthesis, SMS_SynthParams *p
for(i = 0; i < sizeHop; i++)
pFSynthesis[i] = sms_deEmphasis(pSynthParams->pSynthBuff[i], pSynthParams);
}
-
-