gst-libs/gst/tag/gstid3tag.c: Add TXXX frame identifiers for replaygain stuff as used by some taggers (see #323721).

Original commit message from CVS:
* gst-libs/gst/tag/gstid3tag.c:
Add TXXX frame identifiers for replaygain stuff as used
by some taggers (see #323721).
This commit is contained in:
Tim-Philipp Müller 2006-03-16 13:08:01 +00:00
parent 2caf3a5639
commit 7a683ff848
2 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,9 @@
2006-03-16 Tim-Philipp Müller <tim at centricular dot net>
* gst-libs/gst/tag/gstid3tag.c:
Add TXXX frame identifiers for replaygain stuff as used
by some taggers (see #323721).
2006-03-16 Jan Schmidt <thaytan@mad.scientist.com>
* gst/playback/gststreamselector.c:

View file

@ -246,7 +246,13 @@ static GstTagEntryMatch user_tag_matches[] = {
{GST_TAG_MUSICBRAINZ_ARTISTID, "TXXX|MusicBrainz Artist Id"},
{GST_TAG_MUSICBRAINZ_ALBUMID, "TXXX|MusicBrainz Album Id"},
{GST_TAG_MUSICBRAINZ_ALBUMARTISTID, "TXXX|MusicBrainz Album Artist Id"},
{GST_TAG_MUSICBRAINZ_TRMID, "TXXX|MusicBrainz TRM Id"}
{GST_TAG_MUSICBRAINZ_TRMID, "TXXX|MusicBrainz TRM Id"},
/* foobar2000 uses these identifiers to store gain/peak information in
* ID3v2 tags <= v2.3.0. In v2.4.0 there's the RVA2 frame for that */
{GST_TAG_TRACK_GAIN, "TXXX|replaygain_track_gain"},
{GST_TAG_TRACK_PEAK, "TXXX|replaygain_track_peak"},
{GST_TAG_ALBUM_GAIN, "TXXX|replaygain_album_gain"},
{GST_TAG_ALBUM_PEAK, "TXXX|replaygain_album_peak"}
};
/**