From 3b916bf57c27355c0499efb53d590436bb8e1b6c Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Fri, 4 Mar 2011 17:43:24 +0100 Subject: [PATCH] gst: add flag registration --- gst/gst.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gst/gst.c b/gst/gst.c index 6aada1bad6..cd6f2a212c 100644 --- a/gst/gst.c +++ b/gst/gst.c @@ -751,6 +751,7 @@ init_post (GOptionContext * context, GOptionGroup * group, gpointer data, g_type_class_ref (gst_search_mode_get_type ()); g_type_class_ref (gst_progress_type_get_type ()); g_type_class_ref (gst_buffer_pool_flags_get_type ()); + g_type_class_ref (gst_meta_map_flags_get_type ()); gst_structure_get_type (); _gst_event_initialize (); @@ -1116,6 +1117,7 @@ gst_deinit (void) g_type_class_unref (g_type_class_peek (gst_param_spec_fraction_get_type ())); g_type_class_unref (g_type_class_peek (gst_progress_type_get_type ())); g_type_class_unref (g_type_class_peek (gst_buffer_pool_flags_get_type ())); + g_type_class_unref (g_type_class_peek (gst_meta_map_flags_get_type ())); gst_deinitialized = TRUE; GST_INFO ("deinitialized GStreamer");