From: Thibault Saunier Date: Mon, 10 Feb 2020 20:15:13 +0000 (-0300) Subject: discoverer: Start discovering next URI from right thread X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1e9da26b685c666bfb59a461dc65b936c4cbb8cb;p=platform%2Fupstream%2Fgst-plugins-base.git discoverer: Start discovering next URI from right thread When using the cache, we were not using the right GMainContext to setup next URI to discovery, fix that. --- diff --git a/gst-libs/gst/pbutils/gstdiscoverer.c b/gst-libs/gst/pbutils/gstdiscoverer.c index 25e47d5..2fb97cc 100644 --- a/gst-libs/gst/pbutils/gstdiscoverer.c +++ b/gst-libs/gst/pbutils/gstdiscoverer.c @@ -2035,10 +2035,13 @@ start_discovering (GstDiscoverer * dc) if (dc->priv->async) { if (ready) { - g_idle_add_full (G_PRIORITY_DEFAULT_IDLE, + GSource *source; + + source = g_idle_source_new (); + g_source_set_callback (source, (GSourceFunc) emit_discovererd_and_next, gst_object_ref (dc), gst_object_unref); - + g_source_attach (source, dc->priv->ctx); goto beach; }