|
From: <tp...@ke...> - 2011-02-01 14:30:05
|
Module: gst-plugins-base Branch: master Commit: c36a3e46f5151d6f8b0c723f9e12d1f19fcca4b5 URL: http://cgit.freedesktop.org/gstreamer/gst-plugins-base/commit/?id=c36a3e46f5151d6f8b0c723f9e12d1f19fcca4b5 Author: Sreerenj Balachandran <sre...@no...> Date: Thu Aug 19 22:31:07 2010 +0300 id3tag: map the ID3v2 TENC frame to GST_TAG_ENCODED_BY https://bugzilla.gnome.org/show_bug.cgi?id=627268 --- configure.ac | 2 +- gst-libs/gst/tag/gstid3tag.c | 1 + 2 files changed, 2 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index b84d0c5..5b08865 100644 --- a/configure.ac +++ b/configure.ac @@ -60,7 +60,7 @@ AC_LIBTOOL_WIN32_DLL AM_PROG_LIBTOOL dnl *** required versions of GStreamer stuff *** -GST_REQ=0.10.32 +GST_REQ=0.10.32.1 dnl *** autotools stuff **** diff --git a/gst-libs/gst/tag/gstid3tag.c b/gst-libs/gst/tag/gstid3tag.c index fc13fb2..8c9b352 100644 --- a/gst-libs/gst/tag/gstid3tag.c +++ b/gst-libs/gst/tag/gstid3tag.c @@ -201,6 +201,7 @@ static const GstTagEntryMatch tag_matches[] = { {GST_TAG_COMPOSER, "TCOM"}, {GST_TAG_COPYRIGHT, "TCOP"}, {GST_TAG_COPYRIGHT_URI, "WCOP"}, + {GST_TAG_ENCODED_BY, "TENC"}, {GST_TAG_GENRE, "TCON"}, {GST_TAG_DATE, "TDRC"}, {GST_TAG_COMMENT, "COMM"}, |