From 9152c01fcf46fac367a69230ad2c6b90731d859b Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Thu, 26 Jan 2012 18:22:29 +0000 Subject: [PATCH] taglist: restore date/time type to GstDateTime The change to GDateTime was apparently accidental, and breaks plugins trying to feed a GstDateTime to the taglist APi. --- gst/gsttaglist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gsttaglist.c b/gst/gsttaglist.c index 7e3de443..b6af6e1 100644 --- a/gst/gsttaglist.c +++ b/gst/gsttaglist.c @@ -140,7 +140,7 @@ _priv_gst_tag_initialize (void) _("The artist of the entire album, as it should be sorted"), NULL); gst_tag_register (GST_TAG_DATE, GST_TAG_FLAG_META, G_TYPE_DATE, _("date"), _("date the data was created (as a GDate structure)"), NULL); - gst_tag_register (GST_TAG_DATE_TIME, GST_TAG_FLAG_META, G_TYPE_DATE_TIME, + gst_tag_register (GST_TAG_DATE_TIME, GST_TAG_FLAG_META, GST_TYPE_DATE_TIME, _("datetime"), _("date and time the data was created (as a GstDateTime structure)"), NULL); -- 2.7.4