RTCRemoteOutboundRtpStreamStats.reportsSent
The RTCRemoteOutboundRtpStreamStats
dictionary's
reportsSent
property provides the number of Sender Reports
(SRs) the remote peer has transmitted to the local peer.
Syntax
let reportCount = rtcRemoteOutboundRtpStreamStats.reportsSent;
Value
An integer value which indicates the total number of RTCP Sender Reports so far sent by the remote peer to the local peer.
Usage notes
Sender reports, described in RFC 3550, section 6.4.1 with an overview in RFC 3550, section 6.4, are used by RTP to share data transmission quality feedback between the two peers. The data in these reports is used by WebRTC to fill out various fields within the statistics objects, and this property's value indicates how many times that information was shared.
Browser compatibility
BCD tables only load in the browser
See also
- RFC 3550, section 6.4: RTP: A Transport Protocol for Real-Time Applications
- The
RTCRemoteinboundRtpStreamStats
propertyreportsReceived
; the number of RTCP Receiver Report (RR) records received from the remote peer