From: Tim-Philipp Müller Date: Mon, 14 Apr 2008 08:48:50 +0000 (+0000) Subject: gst/gst.c: Pre-register GstGError GType from a thread-safe context (fixes #527967... X-Git-Tag: RELEASE-0_10_20~138 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=75184603157bf720dc3f8fa53b54ef26120087ad;p=platform%2Fupstream%2Fgstreamer.git gst/gst.c: Pre-register GstGError GType from a thread-safe context (fixes #527967); unref enum type classes in deinit. Original commit message from CVS: * gst/gst.c: (init_post), (gst_deinit): Pre-register GstGError GType from a thread-safe context (fixes #527967); unref enum type classes in deinit. --- diff --git a/ChangeLog b/ChangeLog index 84f67d8..b062e3a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-04-14 Tim-Philipp Müller + + * gst/gst.c: (init_post), (gst_deinit): + Pre-register GstGError GType from a thread-safe context + (fixes #527967); unref enum type classes in deinit. + 2008-04-13 Tim-Philipp Müller Patch by: Rene Stadler diff --git a/common b/common index d3ace35..bdc5172 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit d3ace35f57dd196a3e83a0a48f1350ca32db8e39 +Subproject commit bdc5172b0ba183be6d92e58cb51782c23e9f2127 diff --git a/gst/gst.c b/gst/gst.c index 1355f9b..e0ea74c 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -1044,6 +1044,8 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data, _gst_plugin_initialize (); + gst_g_error_get_type (); + /* register core plugins */ gst_plugin_register_static (GST_VERSION_MAJOR, GST_VERSION_MINOR, "staticelements", "core elements linked into the GStreamer library", @@ -1305,6 +1307,66 @@ gst_deinit (void) #ifndef GST_DISABLE_INDEX g_type_class_unref (g_type_class_peek (gst_index_factory_get_type ())); #endif /* GST_DISABLE_INDEX */ +#ifndef GST_DISABLE_ENUMTYPES + g_type_class_unref (g_type_class_peek (gst_object_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_bin_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_buffer_flag_get_type ())); + g_type_class_unref (g_type_class_peek (gst_buffer_copy_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_bus_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_bus_sync_reply_get_type ())); + g_type_class_unref (g_type_class_peek (gst_caps_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_clock_return_get_type ())); + g_type_class_unref (g_type_class_peek (gst_clock_entry_type_get_type ())); + g_type_class_unref (g_type_class_peek (gst_clock_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_debug_graph_details_get_type ())); + g_type_class_unref (g_type_class_peek (gst_state_get_type ())); + g_type_class_unref (g_type_class_peek (gst_state_change_return_get_type ())); + g_type_class_unref (g_type_class_peek (gst_state_change_get_type ())); + g_type_class_unref (g_type_class_peek (gst_element_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_core_error_get_type ())); + g_type_class_unref (g_type_class_peek (gst_library_error_get_type ())); + g_type_class_unref (g_type_class_peek (gst_resource_error_get_type ())); + g_type_class_unref (g_type_class_peek (gst_stream_error_get_type ())); + g_type_class_unref (g_type_class_peek (gst_event_type_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_event_type_get_type ())); + g_type_class_unref (g_type_class_peek (gst_seek_type_get_type ())); + g_type_class_unref (g_type_class_peek (gst_seek_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_format_get_type ())); + g_type_class_unref (g_type_class_peek (gst_index_certainty_get_type ())); + g_type_class_unref (g_type_class_peek (gst_index_entry_type_get_type ())); + g_type_class_unref (g_type_class_peek (gst_index_lookup_method_get_type ())); + g_type_class_unref (g_type_class_peek (gst_assoc_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_index_resolver_method_get_type + ())); + g_type_class_unref (g_type_class_peek (gst_index_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_debug_level_get_type ())); + g_type_class_unref (g_type_class_peek (gst_debug_color_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_iterator_result_get_type ())); + g_type_class_unref (g_type_class_peek (gst_iterator_item_get_type ())); + g_type_class_unref (g_type_class_peek (gst_message_type_get_type ())); + g_type_class_unref (g_type_class_peek (gst_mini_object_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_pad_link_return_get_type ())); + g_type_class_unref (g_type_class_peek (gst_flow_return_get_type ())); + g_type_class_unref (g_type_class_peek (gst_activate_mode_get_type ())); + g_type_class_unref (g_type_class_peek (gst_pad_direction_get_type ())); + g_type_class_unref (g_type_class_peek (gst_pad_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_pad_presence_get_type ())); + g_type_class_unref (g_type_class_peek (gst_pad_template_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_pipeline_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_plugin_error_get_type ())); + g_type_class_unref (g_type_class_peek (gst_plugin_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_rank_get_type ())); + g_type_class_unref (g_type_class_peek (gst_query_type_get_type ())); + g_type_class_unref (g_type_class_peek (gst_buffering_mode_get_type ())); + g_type_class_unref (g_type_class_peek (gst_tag_merge_mode_get_type ())); + g_type_class_unref (g_type_class_peek (gst_tag_flag_get_type ())); + g_type_class_unref (g_type_class_peek (gst_task_state_get_type ())); + g_type_class_unref (g_type_class_peek (gst_alloc_trace_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_type_find_probability_get_type + ())); + g_type_class_unref (g_type_class_peek (gst_uri_type_get_type ())); + g_type_class_unref (g_type_class_peek (gst_parse_error_get_type ())); +#endif g_type_class_unref (g_type_class_peek (gst_param_spec_fraction_get_type ())); gst_deinitialized = TRUE;