mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
For some reason, I only committed a ChangeLog entry yesterday and not the corresponding code...
Original commit message from CVS: 2004-03-06 Christophe Fergeau <teuf@gnome.org> For some reason, I only committed a ChangeLog entry yesterday and not the corresponding code... * ext/mad/gstmad.c: Fix detection of Xing headers * gst/tags/gstid3tag.c: Changes to support TLEN tags
This commit is contained in:
parent
170e28dce7
commit
5b32d38c0b
2 changed files with 18 additions and 10 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2004-03-06 Christophe Fergeau <teuf@gnome.org>
|
||||||
|
|
||||||
|
For some reason, I only committed a ChangeLog entry yesterday and
|
||||||
|
not the corresponding code...
|
||||||
|
* ext/mad/gstmad.c: Fix detection of Xing headers
|
||||||
|
* gst/tags/gstid3tag.c: Changes to support TLEN tags
|
||||||
|
|
||||||
2004-03-06 Benjamin Otte <otte@gnome.org>
|
2004-03-06 Benjamin Otte <otte@gnome.org>
|
||||||
|
|
||||||
* ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
|
* ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
|
||||||
|
|
|
@ -178,16 +178,17 @@ static const gchar *genres[] = {
|
||||||
};
|
};
|
||||||
|
|
||||||
static GstTagEntryMatch tag_matches[] = {
|
static GstTagEntryMatch tag_matches[] = {
|
||||||
{ GST_TAG_TITLE, "TIT2" },
|
{ GST_TAG_TITLE, "TIT2" },
|
||||||
{ GST_TAG_ALBUM, "TALB" },
|
{ GST_TAG_ALBUM, "TALB" },
|
||||||
{ GST_TAG_TRACK_NUMBER, "TRCK" },
|
{ GST_TAG_TRACK_NUMBER, "TRCK" },
|
||||||
{ GST_TAG_ARTIST, "TPE1" },
|
{ GST_TAG_ARTIST, "TPE1" },
|
||||||
{ GST_TAG_COPYRIGHT, "TCOP" },
|
{ GST_TAG_COPYRIGHT, "TCOP" },
|
||||||
{ GST_TAG_GENRE, "TCON" },
|
{ GST_TAG_GENRE, "TCON" },
|
||||||
{ GST_TAG_DATE, "TDRC" },
|
{ GST_TAG_DATE, "TDRC" },
|
||||||
{ GST_TAG_COMMENT, "COMM" },
|
{ GST_TAG_COMMENT, "COMM" },
|
||||||
{ GST_TAG_ALBUM_VOLUME_NUMBER, "TPOS" },
|
{ GST_TAG_ALBUM_VOLUME_NUMBER, "TPOS" },
|
||||||
{ NULL, NULL }
|
{ GST_TAG_DURATION, "TLEN" },
|
||||||
|
{ NULL, NULL }
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
* gst_tag_from_id3_tag:
|
* gst_tag_from_id3_tag:
|
||||||
|
|
Loading…
Reference in a new issue