From 8f44f1c0fda02b9273d21dc31cbd3157dcc1356e Mon Sep 17 00:00:00 2001 From: Varun Singh Date: Mon, 16 Sep 2019 07:24:46 -0700 Subject: [PATCH] adding frames discarded on send (#485) Fixes #397 --- webrtc-stats.html | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/webrtc-stats.html b/webrtc-stats.html index 4ba83cdd..193e469c 100644 --- a/webrtc-stats.html +++ b/webrtc-stats.html @@ -1859,6 +1859,7 @@

unsigned long hugeFramesSent; unsigned long framesEncoded; unsigned long keyFramesEncoded; + unsigned long framesDiscardedOnSend; unsigned long long qpSum; unsigned long long totalSamplesSent; boolean voiceActivityFlag; @@ -2059,6 +2060,18 @@

you the number of delta frames encoded.

+
+ framesDiscardedOnSend of type unsigned long +
+
+

+ Total number of video frames that have been discarded for this SSRC due to socket + errors, i.e. a socket error occured when handing the packets to the socket. This + might happen due to various reasons, including full buffer or no available + memory. +

+
qpSum of type unsigned long long