rtpjitterbuffer: Add support for receiving reduced size RTCP

It worked before but gave warnings, now we just ignore RTCP
packets that don't start with a SR. As all we're interested
in here are SRs.
This commit is contained in:
Sebastian Dröge 2015-06-05 10:33:11 +02:00
parent f563176349
commit 8f5bdf9690

View file

@ -3539,7 +3539,7 @@ gst_rtp_jitter_buffer_chain_rtcp (GstPad * pad, GstObject * parent,
jitterbuffer = GST_RTP_JITTER_BUFFER (parent);
if (G_UNLIKELY (!gst_rtcp_buffer_validate (buffer)))
if (G_UNLIKELY (!gst_rtcp_buffer_validate_reduced (buffer)))
goto invalid_buffer;
priv = jitterbuffer->priv;