Skip to content

Commit

Permalink
opus: add support for RG tags again
Browse files Browse the repository at this point in the history
  • Loading branch information
Almoped committed Nov 12, 2024
1 parent c262106 commit 210fd0d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/opus/opus.cc
Original file line number Diff line number Diff line change
Expand Up @@ -237,13 +237,13 @@ static bool update_replay_gain(OggOpusFile * opus_file,
rg_info->album_peak = str_to_double(album_peak);
rg_info->track_peak = str_to_double(track_peak);
}

AUDDBG("Album peak: %s (%f)\n", album_peak, rg_info->album_peak);
AUDDBG("Track peak: %s (%f)\n", track_peak, rg_info->track_peak);
}

AUDDBG("Album gain: %s (%f)\n", album_gain, rg_info->album_gain);
AUDDBG("Track gain: %s (%f)\n", track_gain, rg_info->track_gain);
AUDDBG("Track gain: %s (%f)\n", track_gain, rg_info->track_gain);

return true;
}
Expand Down

0 comments on commit 210fd0d

Please sign in to comment.