From c7aa4e6a5fc344bcdfaa4fee8ccf2741ab28886e Mon Sep 17 00:00:00 2001 From: Thiago Santos Date: Mon, 14 Jul 2014 18:10:45 -0300 Subject: [PATCH] gst: init taglist gtype to use it in gstvalue Otherwise it will have a 0 value and GstTagList won't be found for GstValue functions (serialization/deserialization) https://bugzilla.gnome.org/show_bug.cgi?id=733131 --- gst/gst.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gst.c b/gst/gst.c index f160772b13..4194e8e099 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -676,11 +676,11 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data, _priv_gst_sample_initialize (); _priv_gst_context_initialize (); _priv_gst_date_time_initialize (); + _priv_gst_tag_initialize (); _priv_gst_toc_initialize (); _priv_gst_value_initialize (); g_type_class_ref (gst_param_spec_fraction_get_type ()); - _priv_gst_tag_initialize (); gst_parse_context_get_type (); _priv_gst_plugin_initialize ();