From 49f1f351c8a2438100656749e677f2f6134934ed Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 12 Dec 2016 20:55:31 +0000 Subject: [PATCH] gst: init new flags type in gst_init() Fix 'make check' some more. --- gst/gst.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gst/gst.c b/gst/gst.c index 3cf067e..8e75e67 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -690,6 +690,7 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data, g_type_class_ref (gst_allocator_flags_get_type ()); g_type_class_ref (gst_stream_flags_get_type ()); g_type_class_ref (gst_stream_type_get_type ()); + g_type_class_ref (gst_stack_trace_flags_get_type ()); _priv_gst_event_initialize (); _priv_gst_buffer_initialize (); @@ -1137,6 +1138,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_stack_trace_flags_get_type ())); gst_deinitialized = TRUE; GST_INFO ("deinitialized GStreamer"); -- 2.7.4