summaryrefslogtreecommitdiff
path: root/sms/harmDetection.c
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2010-12-03 15:51:21 +0000
committerJohn Glover <glover.john@gmail.com>2010-12-03 15:51:21 +0000
commitf0576d53f10832adb8a491f85ec86d2219a621bf (patch)
treefbcf1f5f2aa9b6112c110105cadad61717350aae /sms/harmDetection.c
parent1ed63dfa233347fa0d57a977dec5396f0cfce840 (diff)
downloadsimpl-f0576d53f10832adb8a491f85ec86d2219a621bf.tar.gz
simpl-f0576d53f10832adb8a491f85ec86d2219a621bf.tar.bz2
simpl-f0576d53f10832adb8a491f85ec86d2219a621bf.zip
Fixed bug in harmDetection.c, added more SMS tests
Diffstat (limited to 'sms/harmDetection.c')
-rw-r--r--sms/harmDetection.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sms/harmDetection.c b/sms/harmDetection.c
index a2be13b..bf99729 100644
--- a/sms/harmDetection.c
+++ b/sms/harmDetection.c
@@ -339,7 +339,7 @@ sfloat sms_harmDetection(int numPeaks, SMS_Peak* spectralPeaks, sfloat refFundam
lowestFreq = lowestFreq * refHarmonic;
highestFreq = highestFreq * refHarmonic;
- while((peakFreq < highestFreq) && (iPeak < numPeaks))
+ while((peakFreq < highestFreq) && (iPeak < numPeaks - 1))
{
iPeak++;
peakFreq = spectralPeaks[iPeak].fFreq;