diff --git a/webrtc-stats.html b/webrtc-stats.html index 6100d5c3..06647b7a 100644 --- a/webrtc-stats.html +++ b/webrtc-stats.html @@ -350,7 +350,7 @@

unsigned long pliCount; unsigned long nackCount; unsigned long sliCount; - unsigned long qpSum; + unsigned long long qpSum; };

@@ -466,20 +466,21 @@

qpSum of type - unsigned long + unsigned long long

The sum of the QP values of frames passed. The count of frames is in framesDecoded for inbound stream stats, and in framesEncoded for - outbound stream stats. + outbound stream stats. If QP varies across the frame, + an average or typical QP value is recorded.

The definition of QP value depends on the codec; for VP8, QP values are defined in [[RFC6386]]. + VP8, VP9 and H.264 - RFC 6386 doesn't use the term -->

Only valid for video.

@@ -594,7 +595,7 @@

double burstDiscardRate; double gapLossRate; double gapDiscardRate; - unsigned long framesDecoded; + unsigned long framesDecoded; };