mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-20 06:08:14 +00:00
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:
parent
42a6e487c8
commit
9152c01fcf
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue