Skip to content

Commit

Permalink
Fix replay gain analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Sep 28, 2024
1 parent 19c0e66 commit 7676271
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 7676271

Please sign in to comment.