From 630a1120ba36d6ec2c992d771ca3a8ed11994475 Mon Sep 17 00:00:00 2001 From: Mathieu Duponchelle Date: Fri, 24 Nov 2023 19:53:38 +0100 Subject: [PATCH] webrtcsink: don't panic on failure to request pad from webrtcbin webrtcbin will refuse pad requests for all sorts of reasons, and should be logging an error when doing so, simply post an error message and let the application deal with it, the reason for the refusal should hopefully be available in the logs to the user. Part-of: --- net/webrtc/src/webrtcsink/imp.rs | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/net/webrtc/src/webrtcsink/imp.rs b/net/webrtc/src/webrtcsink/imp.rs index c758f948..9762d5d1 100644 --- a/net/webrtc/src/webrtcsink/imp.rs +++ b/net/webrtc/src/webrtcsink/imp.rs @@ -1142,10 +1142,20 @@ impl Session { payloader_caps ); - let pad = self + let pad = if let Some(pad) = self .webrtcbin .request_pad_simple(&format!("sink_{}", media_idx)) - .unwrap(); + { + pad + } else { + gst::error!(CAT, obj: element, "Failed to request pad from webrtcbin"); + gst::element_error!( + element, + gst::StreamError::Failed, + ["Failed to request pad from webrtcbin"] + ); + return; + }; let transceiver = pad.property::("transceiver");