diff options
author | John Glover <glover.john@gmail.com> | 2010-12-03 15:51:21 +0000 |
---|---|---|
committer | John Glover <glover.john@gmail.com> | 2010-12-03 15:51:21 +0000 |
commit | f0576d53f10832adb8a491f85ec86d2219a621bf (patch) | |
tree | fbcf1f5f2aa9b6112c110105cadad61717350aae /sms/harmDetection.c | |
parent | 1ed63dfa233347fa0d57a977dec5396f0cfce840 (diff) | |
download | simpl-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.c | 2 |
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; |