Skip to content

Commit

Permalink
Remove remote-inbound-rtp.packetsDiscarded. (#626)
Browse files Browse the repository at this point in the history
  • Loading branch information
henbos committed Jun 9, 2022
1 parent 68f614d commit af5fb42
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions webrtc-stats.html
Expand Up @@ -883,7 +883,6 @@ <h3>
unsigned long long packetsReceived;
long long packetsLost;
double jitter;
unsigned long long packetsDiscarded;
unsigned long framesDropped;
};</pre>
<section>
Expand Down Expand Up @@ -926,18 +925,6 @@ <h2>
6.4.1. of [[!RFC3550]].
</p>
</dd>
<dt>
<dfn>packetsDiscarded</dfn> of type <span class=
"idlMemberType">unsigned long long</span>
</dt>
<dd>
<p>
The cumulative number of RTP packets discarded by the jitter buffer due to late
or early-arrival, i.e., these packets are not played out. RTP packets discarded
due to packet duplication are not reported in this metric [[XRBLOCK-STATS]].
Calculated as defined in [[!RFC7002]] section 3.2 and Appendix A.a.
</p>
</dd>
<dt>
<dfn>framesDropped</dfn> of type <span class="idlMemberType">unsigned
long</span>
Expand Down Expand Up @@ -978,6 +965,7 @@ <h3>
double totalSquaredInterFrameDelay;
DOMHighResTimeStamp lastPacketReceivedTimestamp;
unsigned long long headerBytesReceived;
unsigned long long packetsDiscarded;
unsigned long long fecPacketsReceived;
unsigned long long fecPacketsDiscarded;
unsigned long long bytesReceived;
Expand Down Expand Up @@ -1159,6 +1147,18 @@ <h2>
received as payload over the transport.
</p>
</dd>
<dt>
<dfn>packetsDiscarded</dfn> of type <span class=
"idlMemberType">unsigned long long</span>
</dt>
<dd>
<p>
The cumulative number of RTP packets discarded by the jitter buffer due to late
or early-arrival, i.e., these packets are not played out. RTP packets discarded
due to packet duplication are not reported in this metric [[XRBLOCK-STATS]].
Calculated as defined in [[!RFC7002]] section 3.2 and Appendix A.a.
</p>
</dd>
<dt>
<dfn>fecPacketsReceived</dfn> of type <span class=
"idlMemberType">unsigned long long</span>
Expand Down Expand Up @@ -1332,7 +1332,7 @@ <h2>
concealed sample is a sample that was replaced with synthesized samples generated
locally before being played out. Examples of samples that have to be concealed
are samples from lost packets (reported in {{RTCReceivedRtpStreamStats/packetsLost}}) or samples from packets that arrive
too late to be played out (reported in {{RTCReceivedRtpStreamStats/packetsDiscarded}}).
too late to be played out (reported in {{RTCInboundRtpStreamStats/packetsDiscarded}}).
</p>

</dd>
Expand Down

0 comments on commit af5fb42

Please sign in to comment.