diff options
author | John Glover <glover.john@gmail.com> | 2010-12-08 16:12:33 +0000 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-12-08 16:12:33 +0000 |
commit | 67bd3b7ce79f82b495328c774dc4692d9f6447c9 (patch) | |
tree | 3db860c56c426293e1375a78cef57c440ab18b94 /sms/analysis.c | |
parent | f0576d53f10832adb8a491f85ec86d2219a621bf (diff) | |
download | simpl-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/analysis.c')
-rw-r--r-- | sms/analysis.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/sms/analysis.c b/sms/analysis.c index a435a5a..90bec7f 100644 --- a/sms/analysis.c +++ b/sms/analysis.c @@ -31,23 +31,6 @@ /*! \brief maximum size for magnitude spectrum */ #define SMS_MAX_SPEC 8192 -void printAnalysisParams(SMS_AnalParams* params) -{ - printf("fLowestFreq: %f\n" - "fHighestFreq: %f\n" - "fMinPeakMag: %f\n" - "iSamplingRate: %d\n" - "maxPeaks: %d\n" - "fHighestFundamental: %f\n" - "iRefHarmonic: %d\n" - "fMinRefHarmMag: %f\n" - "fRefHarmMagDiffFromMax: %f\n" - "iSoundType: %d\n", - params->fLowestFreq, params->fHighestFreq, params->fMinPeakMag, params->iSamplingRate, - params->maxPeaks, params->fHighestFundamental, params->iRefHarmonic, - params->fMinRefHarmMag, params->fRefHarmMagDiffFromMax, params->iSoundType); -} - /*! \brief compute spectrum, find peaks, and fundamental of one frame * * This is the main core of analysis calls |