From: Sebastian Dröge Date: Fri, 28 Jun 2013 09:00:46 +0000 (+0200) Subject: [720/906] examples: Stop using deprecated GLib thread API X-Git-Tag: 1.19.3~507^2~11812 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bef97ad03e0ccd6bde6e638bc511a2681f404b7d;p=platform%2Fupstream%2Fgstreamer.git [720/906] examples: Stop using deprecated GLib thread API --- diff --git a/tests/examples/clutter/clutteractortee.c b/tests/examples/clutter/clutteractortee.c index 97b1fcc..657e8f6 100644 --- a/tests/examples/clutter/clutteractortee.c +++ b/tests/examples/clutter/clutteractortee.c @@ -71,7 +71,7 @@ create_window (GstBus * bus, GstMessage * message, gpointer data) { GstGLClutterActor **actor = (GstGLClutterActor **) data; static gint count = 0; - static GMutex *mutex = NULL; + static GMutex mutex; // ignore anything but 'prepare-window-handle' element messages if (GST_MESSAGE_TYPE (message) != GST_MESSAGE_ELEMENT) return GST_BUS_PASS; @@ -79,10 +79,7 @@ create_window (GstBus * bus, GstMessage * message, gpointer data) if (!gst_is_video_overlay_prepare_window_handle_message (message)) return GST_BUS_PASS; - if (!mutex) - mutex = g_mutex_new (); - - g_mutex_lock (mutex); + g_mutex_lock (&mutex); if (count < N_ACTORS) { g_message ("adding actor %d", count); @@ -92,7 +89,7 @@ create_window (GstBus * bus, GstMessage * message, gpointer data) count++; } - g_mutex_unlock (mutex); + g_mutex_unlock (&mutex); gst_message_unref (message); return GST_BUS_DROP; diff --git a/tests/examples/gtk/fxtest/fxtest.c b/tests/examples/gtk/fxtest/fxtest.c index 40298d2..124beb1 100644 --- a/tests/examples/gtk/fxtest/fxtest.c +++ b/tests/examples/gtk/fxtest/fxtest.c @@ -132,8 +132,6 @@ main (gint argc, gchar * argv[]) {NULL} }; - g_thread_init (NULL); - context = g_option_context_new (NULL); g_option_context_add_main_entries (context, options, NULL); g_option_context_add_group (context, gst_init_get_option_group ()); diff --git a/tests/examples/gtk/fxtest/pixbufdrop.c b/tests/examples/gtk/fxtest/pixbufdrop.c index 1607b96..5853068 100644 --- a/tests/examples/gtk/fxtest/pixbufdrop.c +++ b/tests/examples/gtk/fxtest/pixbufdrop.c @@ -213,8 +213,6 @@ main (gint argc, gchar * argv[]) {NULL} }; - g_thread_init (NULL); - context = g_option_context_new (NULL); g_option_context_add_main_entries (context, options, NULL); g_option_context_add_group (context, gst_init_get_option_group ());