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 c6258b2 commit c262106
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/opus/opus.cc
Original file line number Diff line number Diff line change
Expand Up @@ -237,12 +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("Album peak: %s (%f)\n", album_peak, rg_info->album_peak);
AUDDBG("Track peak: %s (%f)\n", track_peak, rg_info->track_peak);
AUDDBG("Track gain: %s (%f)\n", track_gain, rg_info->track_gain);

return true;
}
Expand Down

0 comments on commit c262106

Please sign in to comment.