mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-07 08:39:54 +00:00
tag: id3v2: We only care about gain and peak data for the master volume.
Original commit message from CVS: * gst-libs/gst/tag/id3v2frames.c: (parse_relative_volume_adjustment_two): We only care about gain and peak data for the master volume.
This commit is contained in:
parent
84cc22cacc
commit
17be9f715b
1 changed files with 5 additions and 3 deletions
|
@ -359,6 +359,8 @@ parse_unique_file_identifier (ID3TagsWorking * work, const gchar ** tag_name)
|
|||
return ret;
|
||||
}
|
||||
|
||||
#define ID3V2_RVA2_CHANNEL_MASTER 1
|
||||
|
||||
static gboolean
|
||||
parse_relative_volume_adjustment_two (ID3TagsWorking * work)
|
||||
{
|
||||
|
@ -410,14 +412,14 @@ parse_relative_volume_adjustment_two (ID3TagsWorking * work)
|
|||
GST_LOG ("RVA2 frame: id=%s, chan=%u, adj=%.2fdB, peak_bits=%u, peak=%.2f",
|
||||
id, chan, gain_dB, (guint) peak_bits, peak_val);
|
||||
|
||||
if (strcmp (id, "track") == 0) {
|
||||
if (chan == ID3V2_RVA2_CHANNEL_MASTER && strcmp (id, "track") == 0) {
|
||||
gain_tag_name = GST_TAG_TRACK_GAIN;
|
||||
peak_tag_name = GST_TAG_TRACK_PEAK;
|
||||
} else if (strcmp (id, "album") == 0) {
|
||||
} else if (chan == ID3V2_RVA2_CHANNEL_MASTER && strcmp (id, "album") == 0) {
|
||||
gain_tag_name = GST_TAG_ALBUM_GAIN;
|
||||
peak_tag_name = GST_TAG_ALBUM_PEAK;
|
||||
} else {
|
||||
GST_INFO ("Unhandled RVA2 frame id '%s'", id);
|
||||
GST_INFO ("Unhandled RVA2 frame id '%s' for channel %d", id, chan);
|
||||
}
|
||||
|
||||
if (gain_tag_name) {
|
||||
|
|
Loading…
Reference in a new issue