From 065cbc991663d9bf6b8a9c92299f79d886a9c469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Bostr=C3=B6m?= Date: Thu, 21 Dec 2023 11:09:28 +0100 Subject: [PATCH 1/3] Add feature at risk note on audio frame counters. --- index.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/index.html b/index.html index 8035aaa..443c463 100644 --- a/index.html +++ b/index.html @@ -517,6 +517,17 @@

The MediaStreamTrackAudioStats interface

[Default] object toJSON(); }; +
+

The audio frame counters and durations + ({{MediaStreamTrackAudioStats/deliveredFrames}}, + {{MediaStreamTrackAudioStats/deliveredFramesDuration}}, + {{MediaStreamTrackAudioStats/totalFrames}} and + {{MediaStreamTrackAudioStats/totalFramesDuration}}) allowing the + application to measure audio glitches (dropped = total - delivered) + are at risk due to lack of consensus, see Issue + #129.

+

The {{MediaStreamTrackAudioStats}} expose frame counters for the {{MediaStreamTrack}} that created it. For this track, the user agent From 849c48217f3597bceca0d18d0e424516c7942774 Mon Sep 17 00:00:00 2001 From: Jan-Ivar Bruaroey Date: Thu, 21 Dec 2023 10:32:41 -0500 Subject: [PATCH 2/3] Rephrase --- index.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 443c463..b15618a 100644 --- a/index.html +++ b/index.html @@ -518,13 +518,11 @@

The MediaStreamTrackAudioStats interface

};
-

The audio frame counters and durations +

The following metrics lack Working Group consensus: ({{MediaStreamTrackAudioStats/deliveredFrames}}, {{MediaStreamTrackAudioStats/deliveredFramesDuration}}, {{MediaStreamTrackAudioStats/totalFrames}} and - {{MediaStreamTrackAudioStats/totalFramesDuration}}) allowing the - application to measure audio glitches (dropped = total - delivered) - are at risk due to lack of consensus, see Issue #129.

From 0f037924c4f9b0f209cf5f1634efd22f532349a9 Mon Sep 17 00:00:00 2001 From: Jan-Ivar Bruaroey Date: Thu, 21 Dec 2023 10:33:40 -0500 Subject: [PATCH 3/3] Remove parens --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index b15618a..475e70a 100644 --- a/index.html +++ b/index.html @@ -519,10 +519,10 @@

The MediaStreamTrackAudioStats interface

The following metrics lack Working Group consensus: - ({{MediaStreamTrackAudioStats/deliveredFrames}}, + {{MediaStreamTrackAudioStats/deliveredFrames}}, {{MediaStreamTrackAudioStats/deliveredFramesDuration}}, {{MediaStreamTrackAudioStats/totalFrames}} and - {{MediaStreamTrackAudioStats/totalFramesDuration}}). See Issue #129.