mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
rtpssrcdemux: No need to explicitely forward the caps
They are forwarded with the other events
This commit is contained in:
parent
4ad8693f3c
commit
76679f9ae9
1 changed files with 0 additions and 10 deletions
|
@ -220,7 +220,6 @@ find_or_create_demux_pad_for_ssrc (GstRtpSsrcDemux * demux, guint32 ssrc,
|
|||
GstPadTemplate *templ;
|
||||
gchar *padname;
|
||||
GstRtpSsrcDemuxPad *demuxpad;
|
||||
GstCaps *caps;
|
||||
struct ForwardStickyEventData fdata;
|
||||
GstPad *retpad;
|
||||
gulong rtp_block, rtcp_block;
|
||||
|
@ -289,15 +288,6 @@ find_or_create_demux_pad_for_ssrc (GstRtpSsrcDemux * demux, guint32 ssrc,
|
|||
gst_pad_sticky_events_foreach (demux->rtcp_sink, forward_sticky_events,
|
||||
&fdata);
|
||||
|
||||
/* copy caps from input */
|
||||
if ((caps = gst_pad_get_current_caps (demux->rtp_sink))) {
|
||||
gst_pad_set_caps (rtp_pad, caps);
|
||||
gst_caps_unref (caps);
|
||||
}
|
||||
if ((caps = gst_pad_get_current_caps (demux->rtcp_sink))) {
|
||||
gst_pad_set_caps (rtcp_pad, caps);
|
||||
gst_caps_unref (caps);
|
||||
}
|
||||
gst_element_add_pad (GST_ELEMENT_CAST (demux), rtp_pad);
|
||||
gst_element_add_pad (GST_ELEMENT_CAST (demux), rtcp_pad);
|
||||
|
||||
|
|
Loading…
Reference in a new issue