webrtcbin: Fix potential deadlock when closing before any data was sent
A blocking pad probe is added on new sink pads, it's usually removed after the caps have been negotiated or the signaling state switched to stable, but if that never happens and the pad is released we kept the pad probe active, leaving the pad blocked, preventing clean disposal. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4529>
This commit is contained in:
parent
83026f6289
commit
4db12345d1
@ -8214,6 +8214,11 @@ gst_webrtc_bin_release_pad (GstElement * element, GstPad * pad)
|
|||||||
gst_caps_replace (&webrtc_pad->received_caps, NULL);
|
gst_caps_replace (&webrtc_pad->received_caps, NULL);
|
||||||
PC_UNLOCK (webrtc);
|
PC_UNLOCK (webrtc);
|
||||||
|
|
||||||
|
if (webrtc_pad->block_id) {
|
||||||
|
gst_pad_remove_probe (GST_PAD (pad), webrtc_pad->block_id);
|
||||||
|
webrtc_pad->block_id = 0;
|
||||||
|
}
|
||||||
|
|
||||||
_remove_pad (webrtc, webrtc_pad);
|
_remove_pad (webrtc, webrtc_pad);
|
||||||
|
|
||||||
PC_LOCK (webrtc);
|
PC_LOCK (webrtc);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user