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.
This commit is contained in:
Vincent Penquerc'h 2012-01-26 18:22:29 +00:00
parent 42a6e487c8
commit 9152c01fcf

View 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);