adaptivedemux: Fix leak of pad probes in GstAdaptiveDemuxStream

This commit ensures that the idle probe which GstAdaptiveDemuxStream
adds to the upstream source pad is removed after use. Previously a new
probe was added to the pad whenever a fragment was downloaded, meaning
the number of pad probe callbacks being executed increased continually.

https://bugzilla.gnome.org/show_bug.cgi?id=785957
This commit is contained in:
Tom Bailey 2017-08-02 18:17:08 +01:00 committed by Tim-Philipp Müller
parent f0500ec8b4
commit 4064683d36

View file

@ -3081,7 +3081,7 @@ gst_ad_stream_src_to_ready_cb (GstPad * pad, GstPadProbeInfo * info,
g_cond_signal (&stream->fragment_download_cond);
g_mutex_unlock (&stream->fragment_download_lock);
return GST_PAD_PROBE_OK;
return GST_PAD_PROBE_REMOVE;
}
#ifndef GST_DISABLE_GST_DEBUG