rtpbin: Implement releasing of rtcp src pad

See #561752
This commit is contained in:
Olivier Crête 2009-05-22 00:16:19 +02:00 committed by Wim Taymans
parent b6e891bbda
commit ab80a4fa41

View file

@ -2338,8 +2338,13 @@ pad_failed:
static void static void
remove_rtcp (GstRtpBin * rtpbin, GstRtpBinSession * session, GstPad * pad) remove_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 (rtpbin), pad);
if (session->send_rtcp_src) {
gst_element_release_request_pad (session->session, session->send_rtcp_src);
session->send_rtcp_src = NULL;
}
} }
/* If the requested name is NULL we should create a name with /* If the requested name is NULL we should create a name with