From f78ceed43a9ae450d62685682cd63dcf35523d00 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Wed, 23 Feb 2011 12:01:55 +0100 Subject: [PATCH] gst: fix type registration We need to have the types of the miniobjects before registering the tranforms. --- gst/gst.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gst/gst.c b/gst/gst.c index 2b6ff38767..5473ceb5f3 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -751,12 +751,12 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data, g_type_class_ref (gst_progress_type_get_type ()); gst_structure_get_type (); - _gst_value_initialize (); - g_type_class_ref (gst_param_spec_fraction_get_type ()); _gst_event_initialize (); _gst_buffer_initialize (); - _gst_buffer_list_initialize (); _gst_message_initialize (); + _gst_buffer_list_initialize (); + _gst_value_initialize (); + g_type_class_ref (gst_param_spec_fraction_get_type ()); _gst_tag_initialize (); _gst_plugin_initialize ();