mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Fix -Wsign-compare
This commit is contained in:
parent
9970a243ec
commit
a3673809cf
3 changed files with 5 additions and 5 deletions
|
|
@ -384,7 +384,7 @@ LocalCandidatePYIN::getRemainingFeatures()
|
|||
}
|
||||
|
||||
vector<float> mpOut = mp.process(tempPitchProb);
|
||||
float prevFreq = 0;
|
||||
//float prevFreq = 0;
|
||||
for (size_t iFrame = 0; iFrame < nFrame; ++iFrame)
|
||||
{
|
||||
if (mpOut[iFrame] > 0) {
|
||||
|
|
@ -392,7 +392,7 @@ LocalCandidatePYIN::getRemainingFeatures()
|
|||
pitchTracks[iCandidate][iFrame] = mpOut[iFrame];
|
||||
freqSum[iCandidate] += mpOut[iFrame];
|
||||
freqNumber[iCandidate]++;
|
||||
prevFreq = mpOut[iFrame];
|
||||
//prevFreq = mpOut[iFrame];
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue