mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-04 14:19:30 +02:00
Fix warning treated as error in Mac build
This commit is contained in:
parent
fe7434bc9f
commit
1add6f3930
@ -132,7 +132,8 @@ void EBUR128::NextSample()
|
|||||||
|
|
||||||
// idx is within ]-inf, HIST_BIN_COUNT-1], discard indices below 0
|
// idx is within ]-inf, HIST_BIN_COUNT-1], discard indices below 0
|
||||||
// as they are below the EBU R128 absolute threshold anyway.
|
// as they are below the EBU R128 absolute threshold anyway.
|
||||||
if(idx >= 0 && idx < HIST_BIN_COUNT)
|
if(// idx >= 0 &&
|
||||||
|
idx < HIST_BIN_COUNT)
|
||||||
++mLoudnessHist[idx];
|
++mLoudnessHist[idx];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user