Skip to content

Commit

Permalink
Merge pull request #13703 from uklotzde/replaygain
Browse files Browse the repository at this point in the history
Fix replay gain analysis
  • Loading branch information
Holzhaus authored Sep 27, 2024
2 parents 0244f9e + f6a5618 commit 0c00f15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/analyzer/analyzerebur128.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ void AnalyzerEbur128::storeResults(TrackPointer pTrack) {
if (averageLufs == -HUGE_VAL ||
averageLufs == HUGE_VAL ||
// This catches 0 and abnormal values inf and -inf (that may have
// slipped through in libebur for some reason.
util_isnormal(averageLufs)) {
// slipped through in libebur128 for some reason.
!util_isnormal(averageLufs)) {
qWarning() << "AnalyzerEbur128::storeResults() averageLufs invalid:"
<< averageLufs;
return;
Expand Down

0 comments on commit 0c00f15

Please sign in to comment.