From: Tim-Philipp Müller Date: Fri, 3 Aug 2012 22:54:33 +0000 (+0100) Subject: gst: ref/unref taglist scope enum in gst_init() X-Git-Tag: RELEASE-0.11.93~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1118c9264fce4743e0c1e7bf6beb9b838e50f8bb;p=platform%2Fupstream%2Fgstreamer.git gst: ref/unref taglist scope enum in gst_init() Fixes make check and distcheck --- diff --git a/gst/gst.c b/gst/gst.c index ece27f2..b19bac0 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -711,6 +711,7 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data, g_type_class_ref (gst_structure_change_type_get_type ()); g_type_class_ref (gst_tag_merge_mode_get_type ()); g_type_class_ref (gst_tag_flag_get_type ()); + g_type_class_ref (gst_tag_scope_get_type ()); g_type_class_ref (gst_task_pool_get_type ()); g_type_class_ref (gst_task_state_get_type ()); g_type_class_ref (gst_toc_entry_type_get_type ()); @@ -1082,6 +1083,7 @@ gst_deinit (void) 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_tag_scope_get_type ())); g_type_class_unref (g_type_class_peek (gst_task_state_get_type ())); g_type_class_unref (g_type_class_peek (gst_toc_entry_type_get_type ())); g_type_class_unref (g_type_class_peek (gst_toc_scope_get_type ()));