From 76679f9ae902828ee695b6ef5685d613f873e31c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Cr=C3=AAte?= Date: Tue, 2 Apr 2013 23:35:06 -0400 Subject: [PATCH] rtpssrcdemux: No need to explicitely forward the caps They are forwarded with the other events --- gst/rtpmanager/gstrtpssrcdemux.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/gst/rtpmanager/gstrtpssrcdemux.c b/gst/rtpmanager/gstrtpssrcdemux.c index 99765ba6ec..3f3f6accd1 100644 --- a/gst/rtpmanager/gstrtpssrcdemux.c +++ b/gst/rtpmanager/gstrtpssrcdemux.c @@ -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);