From bc223da12e52bb60d8c9abd172d3bf2fa3d4e219 Mon Sep 17 00:00:00 2001 From: henbos Date: Thu, 14 Dec 2023 16:24:55 +0100 Subject: [PATCH] Remove moved audio capture stats. (#773) --- webrtc-stats.html | 74 ----------------------------------------------- 1 file changed, 74 deletions(-) diff --git a/webrtc-stats.html b/webrtc-stats.html index 2345597..f68a074 100644 --- a/webrtc-stats.html +++ b/webrtc-stats.html @@ -2548,10 +2548,6 @@

double totalSamplesDuration; double echoReturnLoss; double echoReturnLossEnhancement; - double droppedSamplesDuration; - unsigned long droppedSamplesEvents; - double totalCaptureDelay; - unsigned long long totalSamplesCaptured; };

@@ -2636,11 +2632,6 @@

{{totalAudioEnergy}} to compute an average audio level over different intervals.

-

- {{totalSamplesDuration}} does not include samples dropped - before reaching this media source, see - {{droppedSamplesDuration}}. -

echoReturnLoss of type least audio energy is considered for any sample.

-
- droppedSamplesDuration of type double -
-
-

- Only applicable if this media source is backed by an audio - capture device. The total duration, in seconds, of samples - produced by the device that got dropped before reaching the - media source. -

-

- This metric is a feature at risk due to lack of consensus. -

-
-
- droppedSamplesEvents of type unsigned long -
-
-

- The number of dropped samples events. This counter - increases every time a sample is dropped after a non-dropped - sample. That is, multiple consecutive dropped samples will - increase {{droppedSamplesDuration}} multiple times but is a - single dropped samples event. -

-

- This metric is a feature at risk due to lack of consensus. -

-
-
- totalCaptureDelay of type double -
-
-

- Only applicable if the audio source represents an audio - capture device. This is the total delay, in seconds, for each - audio sample between the time the sample was emitted by the - capture device and the sample reaching the source. This can be - used together with {{totalSamplesCaptured}} to calculate the - average capture delay per sample. -

-

- This metric is a feature at risk due to lack of consensus. -

-
-
- totalSamplesCaptured of type unsigned long long -
-
-

- Only applicable if the audio source represents an audio - capture device. This is the total number of captured samples - reaching the audio source, i.e. that were not dropped by the - capture pipeline. The frequency of the media source is not - necessarily the same as the frequency of encoders later in the - pipeline. -

-

- This metric is a feature at risk due to lack of consensus. -

-