From f9d62f6a53437953a1a1b08514ab03e94d265e1f Mon Sep 17 00:00:00 2001 From: Kjartan Maraas Date: Tue, 30 Jul 2013 19:27:23 +0200 Subject: [PATCH] gst: register new color mode enum, fixing 'make check' https://bugzilla.gnome.org/show_bug.cgi?id=705156 --- gst/gst.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gst/gst.c b/gst/gst.c index dfed6d922a..d51cb2ff54 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -585,6 +585,7 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data, g_type_class_ref (gst_bus_get_type ()); g_type_class_ref (gst_task_get_type ()); g_type_class_ref (gst_clock_get_type ()); + g_type_class_ref (gst_debug_color_mode_get_type ()); gst_uri_handler_get_type (); @@ -1052,7 +1053,7 @@ gst_deinit (void) g_type_class_unref (g_type_class_peek (gst_lock_flags_get_type ())); 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 ())); gst_deinitialized = TRUE; GST_INFO ("deinitialized GStreamer");