Skip to content

Commit

Permalink
Merge pull request #13704 from uklotzde/replaygain
Browse files Browse the repository at this point in the history
Fix replay gain analysis (backport to 2.4)
  • Loading branch information
JoergAtGithub authored Sep 28, 2024
2 parents 19c0e66 + 7676271 commit 794c71f
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 794c71f

Please sign in to comment.