gst: adding tracer quark id to gst init and deinit
authorThiago Santos <thiagoss@osg.samsung.com>
Mon, 5 Oct 2015 22:05:58 +0000 (19:05 -0300)
committerThiago Santos <thiagoss@osg.samsung.com>
Mon, 5 Oct 2015 22:06:41 +0000 (19:06 -0300)
Fixes issues at make check

gst/gst.c

index 29d737e..2a82d4f 100644 (file)
--- a/gst/gst.c
+++ b/gst/gst.c
@@ -677,6 +677,7 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data,
   g_type_class_ref (gst_lock_flags_get_type ());
   g_type_class_ref (gst_allocator_flags_get_type ());
   g_type_class_ref (gst_stream_flags_get_type ());
+  g_type_class_ref (gst_tracer_quark_id_get_type ());
 
   _priv_gst_event_initialize ();
   _priv_gst_buffer_initialize ();
@@ -1083,6 +1084,7 @@ gst_deinit (void)
   g_type_class_unref (g_type_class_peek (gst_allocator_flags_get_type ()));
   g_type_class_unref (g_type_class_peek (gst_stream_flags_get_type ()));
   g_type_class_unref (g_type_class_peek (gst_debug_color_mode_get_type ()));
+  g_type_class_unref (g_type_class_peek (gst_tracer_quark_id_get_type ()));
 
   gst_deinitialized = TRUE;
   GST_INFO ("deinitialized GStreamer");