mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
decodebin: an element can negotiate before we block it
When we initialize an element in decodebin, we 1) set it to PAUSED and push sticky events on its sinkpad to trigger negotiation 2) block its src pad(s) to detect CAPS events. We can't block before 1) as that would lead to a deadlock. It's possible (and common) tho that an element configures its srcpad during 1) and before 2). Therefore before this change we would typically block and expose an element's pad only once the element output its first buffer, triggering sticky events to be resent. One consequence of this behaviour is that it sometimes broke renegotiation. With this change now we consider a pad ready to be exposed when it's ->blocked or has fixed caps (which were set before we could block it). https://bugzilla.gnome.org/show_bug.cgi?id=765456
This commit is contained in:
parent
60c765174f
commit
fe4e9bb02c
1 changed files with 12 additions and 2 deletions
|
@ -553,6 +553,7 @@ static void gst_decode_pad_unblock (GstDecodePad * dpad);
|
|||
static void gst_decode_pad_set_blocked (GstDecodePad * dpad, gboolean blocked);
|
||||
static gboolean gst_decode_pad_query (GstPad * pad, GstObject * parent,
|
||||
GstQuery * query);
|
||||
static gboolean gst_decode_pad_is_exposable (GstDecodePad * endpad);
|
||||
|
||||
static void gst_pending_pad_free (GstPendingPad * ppad);
|
||||
static GstPadProbeReturn pad_event_cb (GstPad * pad, GstPadProbeInfo * info,
|
||||
|
@ -3940,7 +3941,7 @@ gst_decode_chain_is_complete (GstDecodeChain * chain)
|
|||
goto out;
|
||||
}
|
||||
|
||||
if (chain->endpad && (chain->endpad->blocked || chain->endpad->exposed)) {
|
||||
if (chain->endpad && gst_decode_pad_is_exposable (chain->endpad)) {
|
||||
complete = TRUE;
|
||||
goto out;
|
||||
}
|
||||
|
@ -4746,7 +4747,7 @@ gst_decode_chain_expose (GstDecodeChain * chain, GList ** endpads,
|
|||
}
|
||||
|
||||
if (chain->endpad) {
|
||||
if (!chain->endpad->blocked && !chain->endpad->exposed)
|
||||
if (!gst_decode_pad_is_exposable (chain->endpad) && !chain->endpad->exposed)
|
||||
return FALSE;
|
||||
*endpads = g_list_prepend (*endpads, gst_object_ref (chain->endpad));
|
||||
return TRUE;
|
||||
|
@ -5052,6 +5053,15 @@ gst_decode_pad_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gst_decode_pad_is_exposable (GstDecodePad * endpad)
|
||||
{
|
||||
if (endpad->blocked || endpad->exposed)
|
||||
return TRUE;
|
||||
|
||||
return gst_pad_has_current_caps (GST_PAD_CAST (endpad));
|
||||
}
|
||||
|
||||
/*gst_decode_pad_new:
|
||||
*
|
||||
* Creates a new GstDecodePad for the given pad.
|
||||
|
|
Loading…
Reference in a new issue