mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
parent
ab80a4fa41
commit
b831c9b434
1 changed files with 13 additions and 3 deletions
|
@ -2176,8 +2176,18 @@ link_failed:
|
||||||
static void
|
static void
|
||||||
remove_recv_rtcp (GstRtpBin * rtpbin, GstRtpBinSession * session, GstPad * pad)
|
remove_recv_rtcp (GstRtpBin * rtpbin, GstRtpBinSession * session, GstPad * pad)
|
||||||
{
|
{
|
||||||
g_warning ("gstrtpbin: releasing pad %s:%s is not implemented",
|
gst_pad_set_active (pad, FALSE);
|
||||||
GST_DEBUG_PAD_NAME (pad));
|
gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin), pad);
|
||||||
|
|
||||||
|
if (session->sync_src) {
|
||||||
|
/* releasing the request pad should also unref the sync pad */
|
||||||
|
gst_object_unref (session->sync_src);
|
||||||
|
session->sync_src = NULL;
|
||||||
|
}
|
||||||
|
if (session->recv_rtcp_sink) {
|
||||||
|
gst_element_release_request_pad (session->session, session->recv_rtcp_sink);
|
||||||
|
session->recv_rtcp_sink = NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Create a pad for sending RTP for the session in @name. Must be called with
|
/* Create a pad for sending RTP for the session in @name. Must be called with
|
||||||
|
@ -2339,7 +2349,7 @@ static void
|
||||||
remove_rtcp (GstRtpBin * rtpbin, GstRtpBinSession * session, GstPad * pad)
|
remove_rtcp (GstRtpBin * rtpbin, GstRtpBinSession * session, GstPad * pad)
|
||||||
{
|
{
|
||||||
gst_pad_set_active (pad, FALSE);
|
gst_pad_set_active (pad, FALSE);
|
||||||
gst_element_remove_pad (GST_ELEMENT (rtpbin), pad);
|
gst_element_remove_pad (GST_ELEMENT_CAST (rtpbin), pad);
|
||||||
|
|
||||||
if (session->send_rtcp_src) {
|
if (session->send_rtcp_src) {
|
||||||
gst_element_release_request_pad (session->session, session->send_rtcp_src);
|
gst_element_release_request_pad (session->session, session->send_rtcp_src);
|
||||||
|
|
Loading…
Reference in a new issue