summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2013-01-21 22:08:31 +0100
committerJohn Glover <j@johnglover.net>2013-01-21 22:08:31 +0100
commit4d00d10a308c4a0337f56d4c95b5f62596bbb69e (patch)
tree84316e64a8f42359bc9992002cdb5cddbc793b8a /src
parent0e39f53d8e2092018ae54f1e6679ab837511da77 (diff)
downloadsimpl-4d00d10a308c4a0337f56d4c95b5f62596bbb69e.tar.gz
simpl-4d00d10a308c4a0337f56d4c95b5f62596bbb69e.tar.bz2
simpl-4d00d10a308c4a0337f56d4c95b5f62596bbb69e.zip
[partial_tracking,sms] Fix bug in SMS partial tracking.
GetNextClosestPeak was missing peaks in some situations. Some general tidy up of SMS partial tracking code.
Diffstat (limited to 'src')
-rw-r--r--src/simpl/partial_tracking.cpp2
-rw-r--r--src/sms/analysis.c65
-rw-r--r--src/sms/peakContinuation.c271
-rw-r--r--src/sms/sms.c8
4 files changed, 194 insertions, 152 deletions
diff --git a/src/simpl/partial_tracking.cpp b/src/simpl/partial_tracking.cpp
index c9f7dab..0f28f4d 100644
--- a/src/simpl/partial_tracking.cpp
+++ b/src/simpl/partial_tracking.cpp
@@ -171,7 +171,7 @@ SMSPartialTracking::SMSPartialTracking() {
_analysis_params.fHighestFreq = 20000;
_analysis_params.iMaxDelayFrames = 4;
_analysis_params.analDelay = 0;
- _analysis_params.minGoodFrames = 1;
+ _analysis_params.minGoodFrames = 0;
_analysis_params.iCleanTracks = 0;
_analysis_params.iFormat = SMS_FORMAT_IHP;
_analysis_params.nTracks = _max_partials;
diff --git a/src/sms/analysis.c b/src/sms/analysis.c
index b904449..2355a8f 100644
--- a/src/sms/analysis.c
+++ b/src/sms/analysis.c
@@ -254,15 +254,25 @@ int sms_findPeaks(int sizeWaveform, sfloat *pWaveform, SMS_AnalParams *pAnalPara
void sms_setPeaks(SMS_AnalParams *pAnalParams, int numamps, sfloat* amps,
int numfreqs, sfloat* freqs, int numphases, sfloat* phases)
{
+ if(pAnalParams->iMaxDelayFrames < 2)
+ {
+ printf("Error: iMaxDelayFrames analysis parameter must be at least 2"
+ " (currently set to %d)\n", pAnalParams->iMaxDelayFrames);
+ return;
+ }
+
int i;
SMS_AnalFrame *tempFrame;
- int currentFrame = pAnalParams->iMaxDelayFrames - 1; /* frame # of current frame */
+
+ int currentFrame = pAnalParams->iMaxDelayFrames > 2 ? pAnalParams->iMaxDelayFrames - 1 : 1;
/* move analysis data one frame back */
tempFrame = pAnalParams->ppFrames[0];
for(i = 1; i < pAnalParams->iMaxDelayFrames; i++)
- pAnalParams->ppFrames[i-1] = pAnalParams->ppFrames[i];
- pAnalParams->ppFrames[pAnalParams->iMaxDelayFrames-1] = tempFrame;
+ {
+ pAnalParams->ppFrames[i - 1] = pAnalParams->ppFrames[i];
+ }
+ pAnalParams->ppFrames[currentFrame] = tempFrame;
/* initialize the current frame */
SMS_AnalFrame *frame = pAnalParams->ppFrames[currentFrame];
@@ -289,14 +299,20 @@ void sms_setPeaks(SMS_AnalParams *pAnalParams, int numamps, sfloat* amps,
{
/* get a reference fundamental */
sfloat refFundamental = 0;
- sfloat avgDeviation = sms_fundDeviation(pAnalParams, currentFrame-1);
+ sfloat avgDeviation = sms_fundDeviation(pAnalParams, currentFrame - 1);
if(pAnalParams->iSoundType == SMS_SOUND_TYPE_NOTE)
+ {
refFundamental = pAnalParams->fDefaultFundamental;
+ }
/* if sound is stable use the last fundamental as a reference */
else if(avgDeviation != -1 && avgDeviation <= pAnalParams->maxDeviation)
+ {
refFundamental = pAnalParams->ppFrames[currentFrame-1]->fFundamental;
+ }
else
+ {
refFundamental = 0;
+ }
frame->fFundamental = sms_harmDetection(frame->nPeaks, frame->pSpectralPeaks,
refFundamental, pAnalParams->iRefHarmonic,
@@ -308,52 +324,53 @@ void sms_setPeaks(SMS_AnalParams *pAnalParams, int numamps, sfloat* amps,
int sms_findPartials(SMS_Data *pSmsData, SMS_AnalParams *pAnalParams)
{
- int currentFrame = pAnalParams->iMaxDelayFrames - 1;
+ if(pAnalParams->iMaxDelayFrames < 2)
+ {
+ printf("Error: iMaxDelayFrames analysis parameter must be at least 2"
+ " (currently set to %d)\n", pAnalParams->iMaxDelayFrames);
+ return 1;
+ }
+
+ int currentFrame = pAnalParams->iMaxDelayFrames > 2 ? pAnalParams->iMaxDelayFrames - 1 : 1;
- /* set the frame delay, checking that it does not exceed the given maximum
- *
- * TODO: check for good values of pAnalParams->minGoodFrames and
- * pAnalParams->analDelay here too? Or figure out why sms_crashes if
- * pAnalParamx->iMaxDelayFrames is changed without changing the other
- * two variables.
- */
int delayFrames = pAnalParams->minGoodFrames + pAnalParams->analDelay;
- if(delayFrames > (pAnalParams->iMaxDelayFrames - 1))
- delayFrames = pAnalParams->iMaxDelayFrames - 1;
+ if(delayFrames >= currentFrame)
+ {
+ printf("Error: analysis delay is too large (%d, max is %d)\n",
+ delayFrames, currentFrame - 1);
+ return 1;
+ }
- /* clear SMS output */
sms_clearFrame(pSmsData);
- /* incorporate the peaks into the corresponding tracks */
- if(pAnalParams->ppFrames[currentFrame-delayFrames]->fFundamental > 0 ||
+ if(pAnalParams->ppFrames[currentFrame - delayFrames]->fFundamental > 0 ||
((pAnalParams->iFormat == SMS_FORMAT_IH || pAnalParams->iFormat == SMS_FORMAT_IHP) &&
- pAnalParams->ppFrames[currentFrame-delayFrames]->nPeaks > 0))
+ pAnalParams->ppFrames[currentFrame - delayFrames]->nPeaks > 0))
{
- sms_peakContinuation(currentFrame-delayFrames, pAnalParams);
+ sms_peakContinuation(currentFrame - delayFrames, pAnalParams);
}
- /* fill gaps and delete short tracks */
if(pAnalParams->iCleanTracks > 0)
{
- sms_cleanTracks(currentFrame-delayFrames, pAnalParams);
+ sms_cleanTracks(currentFrame - delayFrames, pAnalParams);
}
- /* output data */
int length = sizeof(sfloat) * pSmsData->nTracks;
memcpy((char *) pSmsData->pFSinFreq, (char *)
pAnalParams->ppFrames[0]->deterministic.pFSinFreq, length);
memcpy((char *) pSmsData->pFSinAmp, (char *)
pAnalParams->ppFrames[0]->deterministic.pFSinAmp, length);
- /* convert mags back to linear */
sms_arrayDBToMag(pSmsData->nTracks, pSmsData->pFSinAmp);
if(pAnalParams->iFormat == SMS_FORMAT_HP ||
pAnalParams->iFormat == SMS_FORMAT_IHP)
+ {
memcpy((char *) pSmsData->pFSinPha, (char *)
pAnalParams->ppFrames[0]->deterministic.pFSinPha, length);
+ }
- return 1;
+ return 0;
}
int sms_findResidual(int sizeSynthesis, sfloat* pSynthesis,
diff --git a/src/sms/peakContinuation.c b/src/sms/peakContinuation.c
index 14e66cd..fe6620d 100644
--- a/src/sms/peakContinuation.c
+++ b/src/sms/peakContinuation.c
@@ -41,86 +41,93 @@
* \param fFreqDev maximum deviation from guide
* \return peak number or -1 if nothing is good
*/
-static int GetNextClosestPeak(sfloat fGuideFreq, sfloat *pFFreqDistance,
- SMS_Peak *pSpectralPeaks, SMS_AnalParams *pAnalParams,
+static int GetNextClosestPeak(sfloat fGuideFreq,
+ sfloat *pFFreqDistance,
+ SMS_Peak *pSpectralPeaks,
+ SMS_AnalParams *pAnalParams,
sfloat fFreqDev)
{
- int iInitialPeak = SMS_MAX_NPEAKS * fGuideFreq / (pAnalParams->iSamplingRate * .5);
- int iLowPeak, iHighPeak, iChosenPeak = -1;
- sfloat fLowDistance, fHighDistance, fFreq;
-
- if(iInitialPeak >= pAnalParams->maxPeaks)
- iInitialPeak = 0;
- else if(pSpectralPeaks[iInitialPeak].fFreq <= 0)
- iInitialPeak = 0;
-
- /* find a low peak to start */
- fLowDistance = fGuideFreq - pSpectralPeaks[iInitialPeak].fFreq;
- if(floor(fLowDistance) < floor(*pFFreqDistance))
+ int lowPeak = -1;
+ int highPeak = -1;
+ int chosenPeak = -1;
+ int currentPeak = 0;
+ sfloat lowDistance, highDistance;
+
+ /* find lowest peak within pFFreqDistance of the guide frequency */
+ lowDistance = fabs(fGuideFreq - pSpectralPeaks[currentPeak].fFreq);
+
+ while((floor(lowDistance) >= floor(*pFFreqDistance) ||
+ (floor(lowDistance) >= floor(fFreqDev))) &&
+ floor(pSpectralPeaks[currentPeak].fFreq) > 0 &&
+ currentPeak < (pAnalParams->maxPeaks - 1))
{
- while(floor(fLowDistance) <= floor(*pFFreqDistance) &&
- iInitialPeak > 0)
- {
- iInitialPeak--;
- fLowDistance = fGuideFreq - pSpectralPeaks[iInitialPeak].fFreq;
- }
+ currentPeak++;
+ lowDistance = fabs(fGuideFreq - pSpectralPeaks[currentPeak].fFreq);
+ }
+
+ if(floor(lowDistance) < floor(*pFFreqDistance) &&
+ floor(lowDistance) <= floor(fFreqDev))
+ {
+ lowPeak = currentPeak;
}
else
{
- while(floor(fLowDistance) >= floor(*pFFreqDistance) &&
- iInitialPeak < (pAnalParams->maxPeaks-1))
- {
- iInitialPeak++;
- if((fFreq = pSpectralPeaks[iInitialPeak].fFreq) == 0)
- return -1;
- fLowDistance = fGuideFreq - fFreq;
- }
- if(iInitialPeak > 0)
- iInitialPeak--;
- fLowDistance = fGuideFreq - pSpectralPeaks[iInitialPeak].fFreq;
+ return -1;
}
- if(floor(fLowDistance) <= floor(*pFFreqDistance) ||
- fLowDistance > fFreqDev)
- iLowPeak = -1;
- else
- iLowPeak = iInitialPeak;
+ /* find highest peak within pFFreqDistance of the guide frequency */
+ highDistance = fabs(fGuideFreq - pSpectralPeaks[currentPeak].fFreq);
- /* find a high peak to finish */
- iHighPeak = iInitialPeak;
- fHighDistance = fGuideFreq - pSpectralPeaks[iHighPeak].fFreq;
- while(floor(fHighDistance) >= floor(-*pFFreqDistance) &&
- iHighPeak < (pAnalParams->maxPeaks - 1))
+ while(currentPeak < (pAnalParams->maxPeaks - 1) &&
+ floor(highDistance) < floor(*pFFreqDistance) &&
+ floor(highDistance) < floor(fFreqDev) &&
+ floor(pSpectralPeaks[currentPeak].fFreq) > 0)
{
- iHighPeak++;
- if((fFreq = pSpectralPeaks[iHighPeak].fFreq) == 0)
- {
- iHighPeak = -1;
- break;
- }
- fHighDistance = fGuideFreq - fFreq;
+ currentPeak++;
+ highDistance = fabs(fGuideFreq - pSpectralPeaks[currentPeak].fFreq);
+ }
+
+ if(currentPeak > 0 &&
+ currentPeak < (pAnalParams->maxPeaks - 1) &&
+ currentPeak > lowPeak)
+ {
+ currentPeak--;
+ highDistance = fabs(fGuideFreq - pSpectralPeaks[currentPeak].fFreq);
}
- if(fHighDistance > 0 || fabs(fHighDistance) > fFreqDev ||
- floor(fabs(fHighDistance)) <= floor(*pFFreqDistance))
- iHighPeak = -1;
- /* chose between the two extrema */
- if(iHighPeak >= 0 && iLowPeak >= 0)
+ if(floor(highDistance) < floor(*pFFreqDistance) &&
+ floor(highDistance) < floor(fFreqDev))
{
- if(fabs(fHighDistance) > fLowDistance)
- iChosenPeak = iLowPeak;
+ highPeak = currentPeak;
+ }
+
+ /* chose between the two peaks */
+ if(highPeak >= 0 && lowPeak >= 0)
+ {
+ if(highDistance > lowDistance)
+ {
+ chosenPeak = lowPeak;
+ }
else
- iChosenPeak = iHighPeak;
+ {
+ chosenPeak = highPeak;
+ }
+ }
+ else if(lowPeak >= 0)
+ {
+ chosenPeak = lowPeak;
+ }
+ else if(highPeak >= 0)
+ {
+ chosenPeak = highPeak;
}
- else if(iHighPeak < 0 && iLowPeak >= 0)
- iChosenPeak = iLowPeak;
- else if(iHighPeak >= 0 && iLowPeak < 0)
- iChosenPeak = iHighPeak;
else
+ {
return -1;
+ }
- *pFFreqDistance = fabs(fGuideFreq - pSpectralPeaks[iChosenPeak].fFreq);
- return iChosenPeak;
+ *pFFreqDistance = fabs(fGuideFreq - pSpectralPeaks[chosenPeak].fFreq);
+ return chosenPeak;
}
/*! \brief choose the best candidate out of all
@@ -179,8 +186,12 @@ static int CheckForConflict(int iBestPeak, SMS_Guide *pGuides, int nGuides)
int iGuide;
for (iGuide = 0; iGuide < nGuides; iGuide++)
+ {
if (pGuides[iGuide].iPeakChosen == iBestPeak)
+ {
return iGuide;
+ }
+ }
return -1;
}
@@ -209,11 +220,11 @@ static int BestGuide(int iConflictingGuide, int iGuide, SMS_Guide *pGuides,
}
/*! \brief function to find the best continuation peak for a given guide
- * \param pGuides guide attributes
- * \param iGuide number of guide
- * \param pSpectralPeaks peak values at the current frame
- * \param pAnalParams analysis parameters
- * \param fFreqDev frequency deviation allowed
+ * \param pGuides guide attributes
+ * \param iGuide number of guide
+ * \param pSpectralPeaks peak values at the current frame
+ * \param pAnalParams analysis parameters
+ * \param fFreqDev frequency deviation allowed
* \return the peak number
*/
int GetBestPeak(SMS_Guide *pGuides, int iGuide, SMS_Peak *pSpectralPeaks,
@@ -223,61 +234,56 @@ int GetBestPeak(SMS_Guide *pGuides, int iGuide, SMS_Peak *pSpectralPeaks,
sfloat fGuideFreq = pGuides[iGuide].fFreq,
fGuideMag = pGuides[iGuide].fMag,
fMagDistance = 0;
- sfloat fFreqDistance = -1;
+ /* TODO: fFreqDistance should either set to something that varies with
+ * frequency or be a parameter in the analysis parameters struct
+ */
+ sfloat fFreqDistance = 100;
SMS_ContCandidate pCandidate[MAX_CONT_CANDIDATES];
/* find all possible candidates */
while (iCand < MAX_CONT_CANDIDATES)
{
/* find the next best peak */
- if((iPeak = GetNextClosestPeak(fGuideFreq, &fFreqDistance,
- pSpectralPeaks, pAnalParams, fFreqDev)) < 0)
+ iPeak = GetNextClosestPeak(fGuideFreq, &fFreqDistance,
+ pSpectralPeaks, pAnalParams, fFreqDev);
+ if(iPeak < 0)
+ {
break;
+ }
/* if the peak's magnitude is not too small accept it as */
- /* possible candidate */
- if ((fMagDistance = pSpectralPeaks[iPeak].fMag - fGuideMag) > -20.0)
+ /* possible candidate */
+ if((fMagDistance = pSpectralPeaks[iPeak].fMag - fGuideMag) > -20.0)
{
pCandidate[iCand].fFreqDev = fabs(fFreqDistance);
pCandidate[iCand].fMagDev = fMagDistance;
pCandidate[iCand].iPeak = iPeak;
-
- if(pAnalParams->iDebugMode == SMS_DBG_PEAK_CONT ||
- pAnalParams->iDebugMode == SMS_DBG_ALL)
- fprintf(stdout, "candidate %d: freq %f mag %f\n",
- iCand, pSpectralPeaks[iPeak].fFreq,
- pSpectralPeaks[iPeak].fMag);
iCand++;
}
}
+
/* get best candidate */
if(iCand < 1)
+ {
return 0;
+ }
else if (iCand == 1)
+ {
iBestPeak = pCandidate[0].iPeak;
+ }
else
- iBestPeak = ChooseBestCand (pCandidate, iCand,
- pAnalParams->fFreqDeviation);
-
- if(pAnalParams->iDebugMode == SMS_DBG_PEAK_CONT ||
- pAnalParams->iDebugMode == SMS_DBG_ALL)
- fprintf (stdout, "BestCandidate: freq %f\n",
- pSpectralPeaks[iBestPeak].fFreq);
+ {
+ iBestPeak = ChooseBestCand(pCandidate, iCand,
+ pAnalParams->fFreqDeviation);
+ }
/* if peak taken by another guide resolve conflict */
- if ((iConflictingGuide = CheckForConflict (iBestPeak, pGuides,
- pAnalParams->nGuides)) >= 0)
+ if ((iConflictingGuide = CheckForConflict(iBestPeak,
+ pGuides,
+ pAnalParams->nGuides)) >= 0)
{
- iWinnerGuide = BestGuide (iConflictingGuide, iGuide, pGuides,
- pSpectralPeaks);
- if(pAnalParams->iDebugMode == SMS_DBG_PEAK_CONT ||
- pAnalParams->iDebugMode == SMS_DBG_ALL)
- fprintf (stdout,
- "Conflict: guide: %d (%f), and guide: %d (%f). best: %d\n",
- iGuide, pGuides[iGuide].fFreq,
- iConflictingGuide, pGuides[iConflictingGuide].fFreq,
- iWinnerGuide);
-
+ iWinnerGuide = BestGuide(iConflictingGuide, iGuide,
+ pGuides, pSpectralPeaks);
if (iGuide == iWinnerGuide)
{
pGuides[iGuide].iPeakChosen = iBestPeak;
@@ -337,11 +343,12 @@ static int GetStartingPeak(int iGuide, SMS_Guide *pGuides, int nGuides,
while (peakNotFound == 1 && *pFCurrentMax > 0)
{
- /* \todo I don't think this ever returns -1, but check */
if ((iPeak = GetNextMax(pSpectralPeaks, pAnalParams, pFCurrentMax)) < 0)
- return (-1);
+ {
+ return -1;
+ }
- if (CheckForConflict (iPeak, pGuides, nGuides) < 0)
+ if (CheckForConflict(iPeak, pGuides, nGuides) < 0)
{
pGuides[iGuide].iPeakChosen = iPeak;
pGuides[iGuide].iStatus = GUIDE_BEG;
@@ -349,7 +356,7 @@ static int GetStartingPeak(int iGuide, SMS_Guide *pGuides, int nGuides,
peakNotFound = 0;
}
}
- return (1);
+ return 1;
}
/*! \brief function to advance the guides through the next frame
@@ -366,6 +373,9 @@ int sms_peakContinuation(int iFrame, SMS_AnalParams *pAnalParams)
sfloat fFund = pAnalParams->ppFrames[iFrame]->fFundamental,
fFreqDev = fFund * pAnalParams->fFreqDeviation, fCurrentMax = 1000;
+ SMS_AnalFrame *prevFrame = pAnalParams->ppFrames[iFrame - 1];
+ SMS_AnalFrame *currentFrame = pAnalParams->ppFrames[iFrame];
+
/* update guides with fundamental contribution */
if(fFund > 0 && (pAnalParams->iFormat == SMS_FORMAT_H ||
pAnalParams->iFormat == SMS_FORMAT_HP))
@@ -373,31 +383,24 @@ int sms_peakContinuation(int iFrame, SMS_AnalParams *pAnalParams)
for(iGuide = 0; iGuide < pAnalParams->nGuides; iGuide++)
{
pAnalParams->guides[iGuide].fFreq =
- (1 - pAnalParams->fFundContToGuide) * pAnalParams->guides[iGuide].fFreq +
+ (1 - pAnalParams->fFundContToGuide) *
+ pAnalParams->guides[iGuide].fFreq +
pAnalParams->fFundContToGuide * fFund * (iGuide + 1);
}
}
- if(pAnalParams->iDebugMode == SMS_DBG_PEAK_CONT ||
- pAnalParams->iDebugMode == SMS_DBG_ALL)
- fprintf(stdout, "Frame %d Peak Continuation: \n",
- pAnalParams->ppFrames[iFrame]->iFrameNum);
-
/* continue all guides */
for(iGuide = 0; iGuide < pAnalParams->nGuides; iGuide++)
{
- sfloat fPreviousFreq = pAnalParams->ppFrames[iFrame-1]->deterministic.pFSinFreq[iGuide];
+ sfloat fPreviousFreq = prevFrame->deterministic.pFSinFreq[iGuide];
/* get the guide value by upgrading the previous guide */
if(fPreviousFreq > 0)
+ {
pAnalParams->guides[iGuide].fFreq =
(1 - pAnalParams->fPeakContToGuide) * pAnalParams->guides[iGuide].fFreq +
pAnalParams->fPeakContToGuide * fPreviousFreq;
-
- if(pAnalParams->iDebugMode == SMS_DBG_PEAK_CONT ||
- pAnalParams->iDebugMode == SMS_DBG_ALL)
- fprintf(stdout, "Guide %d: freq %f, mag %f\n",
- iGuide, pAnalParams->guides[iGuide].fFreq, pAnalParams->guides[iGuide].fMag);
+ }
if(pAnalParams->guides[iGuide].fFreq <= 0.0 ||
pAnalParams->guides[iGuide].fFreq > pAnalParams->fHighestFreq)
@@ -411,12 +414,15 @@ int sms_peakContinuation(int iFrame, SMS_AnalParams *pAnalParams)
if(pAnalParams->iFormat == SMS_FORMAT_IH ||
pAnalParams->iFormat == SMS_FORMAT_IHP)
- fFreqDev = pAnalParams->guides[iGuide].fFreq * pAnalParams->fFreqDeviation;
+ {
+ fFreqDev = pAnalParams->guides[iGuide].fFreq *
+ pAnalParams->fFreqDeviation;
+ }
/* get the best peak for the guide */
iGoodPeak = GetBestPeak(pAnalParams->guides,
iGuide,
- pAnalParams->ppFrames[iFrame]->pSpectralPeaks,
+ currentFrame->pSpectralPeaks,
pAnalParams,
fFreqDev);
}
@@ -428,12 +434,19 @@ int sms_peakContinuation(int iFrame, SMS_AnalParams *pAnalParams)
for(iGuide = 0; iGuide < pAnalParams->nGuides; iGuide++)
{
if(pAnalParams->guides[iGuide].iStatus != GUIDE_DEAD)
+ {
continue;
-
- if(GetStartingPeak(iGuide, pAnalParams->guides, pAnalParams->nGuides,
- pAnalParams->ppFrames[iFrame]->pSpectralPeaks,
- pAnalParams, &fCurrentMax) == -1)
+ }
+
+ if(GetStartingPeak(iGuide,
+ pAnalParams->guides,
+ pAnalParams->nGuides,
+ currentFrame->pSpectralPeaks,
+ pAnalParams,
+ &fCurrentMax) == -1)
+ {
break;
+ }
}
}
@@ -442,7 +455,9 @@ int sms_peakContinuation(int iFrame, SMS_AnalParams *pAnalParams)
for(iGuide = 0; iGuide < pAnalParams->nGuides; iGuide++)
{
if(pAnalParams->guides[iGuide].iStatus == GUIDE_DEAD)
+ {
continue;
+ }
if(pAnalParams->iFormat == SMS_FORMAT_IH ||
pAnalParams->iFormat == SMS_FORMAT_IHP)
@@ -450,7 +465,8 @@ int sms_peakContinuation(int iFrame, SMS_AnalParams *pAnalParams)
if(pAnalParams->guides[iGuide].iStatus > 0 &&
pAnalParams->guides[iGuide].iPeakChosen == -1)
{
- if(pAnalParams->guides[iGuide].iStatus++ > pAnalParams->iMaxSleepingTime)
+ if(pAnalParams->guides[iGuide].iStatus++ >
+ pAnalParams->iMaxSleepingTime)
{
pAnalParams->guides[iGuide].iStatus = GUIDE_DEAD;
pAnalParams->guides[iGuide].fFreq = 0;
@@ -458,7 +474,9 @@ int sms_peakContinuation(int iFrame, SMS_AnalParams *pAnalParams)
pAnalParams->guides[iGuide].iPeakChosen = -1;
}
else
+ {
pAnalParams->guides[iGuide].iStatus++;
+ }
continue;
}
@@ -473,12 +491,12 @@ int sms_peakContinuation(int iFrame, SMS_AnalParams *pAnalParams)
/* if good continuation peak found, save it */
if((iCurrentPeak = pAnalParams->guides[iGuide].iPeakChosen) >= 0)
{
- pAnalParams->ppFrames[iFrame]->deterministic.pFSinFreq[iGuide] =
- pAnalParams->ppFrames[iFrame]->pSpectralPeaks[iCurrentPeak].fFreq;
- pAnalParams->ppFrames[iFrame]->deterministic.pFSinAmp[iGuide] =
- pAnalParams->ppFrames[iFrame]->pSpectralPeaks[iCurrentPeak].fMag;
- pAnalParams->ppFrames[iFrame]->deterministic.pFSinPha[iGuide] =
- pAnalParams->ppFrames[iFrame]->pSpectralPeaks[iCurrentPeak].fPhase;
+ currentFrame->deterministic.pFSinFreq[iGuide] =
+ currentFrame->pSpectralPeaks[iCurrentPeak].fFreq;
+ currentFrame->deterministic.pFSinAmp[iGuide] =
+ currentFrame->pSpectralPeaks[iCurrentPeak].fMag;
+ currentFrame->deterministic.pFSinPha[iGuide] =
+ currentFrame->pSpectralPeaks[iCurrentPeak].fPhase;
pAnalParams->guides[iGuide].iStatus = GUIDE_ACTIVE;
pAnalParams->guides[iGuide].iPeakChosen = -1;
@@ -486,4 +504,3 @@ int sms_peakContinuation(int iFrame, SMS_AnalParams *pAnalParams)
}
return SMS_OK;
}
-
diff --git a/src/sms/sms.c b/src/sms/sms.c
index ac14694..5799489 100644
--- a/src/sms/sms.c
+++ b/src/sms/sms.c
@@ -893,16 +893,22 @@ sfloat sms_fundDeviation(SMS_AnalParams *pAnalParams, int iCurrentFrame)
int i;
if(pAnalParams->minGoodFrames < 1)
+ {
return -1;
+ }
/* get the sum of the past few fundamentals */
for(i = 0; (i < pAnalParams->minGoodFrames) && (iCurrentFrame-i >= 0); i++)
{
fFund = pAnalParams->ppFrames[iCurrentFrame-i]->fFundamental;
if(fFund <= 0)
+ {
return -1;
+ }
else
+ {
fSum += fFund;
+ }
}
/* find the average */
@@ -910,7 +916,9 @@ sfloat sms_fundDeviation(SMS_AnalParams *pAnalParams, int iCurrentFrame)
/* get the deviation from the average */
for(i = 0; (i < pAnalParams->minGoodFrames) && (iCurrentFrame-i >= 0); i++)
+ {
fDeviation += fabs(pAnalParams->ppFrames[iCurrentFrame-i]->fFundamental - fAverage);
+ }
/* return the deviation from the average */
return fDeviation / (pAnalParams->minGoodFrames * fAverage);