Back to Content

RTCInboundRtpStreamStats: packetsLost property

files/en-us/web/api/rtcinboundrtpstreamstats/packetslost/index.md

latest1.1 KB
Original Source

{{APIRef("WebRTC")}}

The packetsLost property of the {{domxref("RTCRemoteInboundRtpStreamStats")}} dictionary returns the total number of {{Glossary("RTP")}} packets lost from the synchronization source (SSRC) since the beginning of reception.

Note that this can be negative.

Value

An integer value.

The value is determined by subtracting the number of packets received from the number of packets that are expected. The number of packets that are expected is calculated in a way that assumes that all packets only need to be sent once (based on sequence numbers), while the number of packets received also includes any packets that had to be resent (and hence may be bigger). For more information see the "cumulative number of packets lost" section in {{RFC("3550", "", "6.4.1")}}.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{domxref("RTCInboundRtpStreamStats.ssrc")}}
  • {{domxref("RTCRemoteInboundRtpStreamStats.packetsLost")}}
  • {{domxref("RTCInboundRtpStreamStats.packetsDiscarded", "packetsDiscarded")}}