decodebin3: Don't lose a ref on EOS event
Make sure not to give away the ref on the final EOS event for which the probe handler is returning GST_PAD_PROBE_REMOVE when pushing the event manually. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3107>
This commit is contained in:
parent
f08bdf1c4a
commit
e5828c8295
@ -2070,10 +2070,8 @@ multiqueue_src_probe (GstPad * pad, GstPadProbeInfo * info,
|
|||||||
"last EOS for input, forwarding and removing slot");
|
"last EOS for input, forwarding and removing slot");
|
||||||
peer = gst_pad_get_peer (pad);
|
peer = gst_pad_get_peer (pad);
|
||||||
if (peer) {
|
if (peer) {
|
||||||
gst_pad_send_event (peer, ev);
|
gst_pad_send_event (peer, gst_event_ref (ev));
|
||||||
gst_object_unref (peer);
|
gst_object_unref (peer);
|
||||||
} else {
|
|
||||||
gst_event_unref (ev);
|
|
||||||
}
|
}
|
||||||
SELECTION_LOCK (dbin);
|
SELECTION_LOCK (dbin);
|
||||||
/* FIXME : Shouldn't we try to re-assign the output instead of just
|
/* FIXME : Shouldn't we try to re-assign the output instead of just
|
||||||
|
Loading…
x
Reference in New Issue
Block a user