mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
gstrtpssrcdemux: manage ssrc of RTCP RR packets
https://bugzilla.gnome.org/show_bug.cgi?id=731324
This commit is contained in:
parent
efaf996b1a
commit
b22aed9bbc
1 changed files with 3 additions and 0 deletions
|
@ -694,6 +694,9 @@ gst_rtp_ssrc_demux_rtcp_chain (GstPad * pad, GstObject * parent,
|
|||
gst_rtcp_packet_sr_get_sender_info (&packet, &ssrc, NULL, NULL, NULL,
|
||||
NULL);
|
||||
break;
|
||||
case GST_RTCP_TYPE_RR:
|
||||
ssrc = gst_rtcp_packet_rr_get_ssrc (&packet);
|
||||
break;
|
||||
default:
|
||||
goto unexpected_rtcp;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue