summaryrefslogtreecommitdiff
path: root/sms/analysis.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/analysis.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/analysis.c')
-rw-r--r--sms/analysis.c17
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