From: Nirbheek Chauhan Date: Tue, 27 Mar 2018 07:17:13 +0000 (+0530) Subject: decklink: Use g_thread_new instead of g_thread_create X-Git-Tag: 1.19.3~507^2~4311 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=90f6e6c0974cf7c89942cbe5dfc51bbdaeb10351;p=platform%2Fupstream%2Fgstreamer.git decklink: Use g_thread_new instead of g_thread_create It's deprecated, and causes a build failure in Cerbero because we pass -DG_DISABLE_DEPRECATED. --- diff --git a/sys/decklink/gstdecklink.cpp b/sys/decklink/gstdecklink.cpp index b08ae48..fb7276a 100644 --- a/sys/decklink/gstdecklink.cpp +++ b/sys/decklink/gstdecklink.cpp @@ -1133,7 +1133,7 @@ init_devices (gpointer data) g_mutex_lock (&com_init_lock); /* create the COM initialization thread */ - g_thread_create ((GThreadFunc) gst_decklink_com_thread, NULL, FALSE, NULL); + g_thread_new ("COM init thread", (GThreadFunc) gst_decklink_com_thread, NULL); /* wait until the COM thread signals that COM has been initialized */ g_cond_wait (&com_init_cond, &com_init_lock);