taglist: restore date/time type to GstDateTime
authorVincent Penquerc'h <vincent.penquerch@collabora.co.uk>
Thu, 26 Jan 2012 18:22:29 +0000 (18:22 +0000)
committerVincent Penquerc'h <vincent.penquerch@collabora.co.uk>
Thu, 26 Jan 2012 18:23:46 +0000 (18:23 +0000)
The change to GDateTime was apparently accidental, and
breaks plugins trying to feed a GstDateTime to the taglist APi.

gst/gsttaglist.c

index 7e3de44..b6af6e1 100644 (file)
@@ -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);