Skip to content

Commit

Permalink
Remove moved audio capture stats. (#773)
Browse files Browse the repository at this point in the history
  • Loading branch information
henbos authored Dec 14, 2023
1 parent 9a411e0 commit bc223da
Showing 1 changed file with 0 additions and 74 deletions.
74 changes: 0 additions & 74 deletions webrtc-stats.html
Original file line number Diff line number Diff line change
Expand Up @@ -2548,10 +2548,6 @@ <h3>
double totalSamplesDuration;
double echoReturnLoss;
double echoReturnLossEnhancement;
double droppedSamplesDuration;
unsigned long droppedSamplesEvents;
double totalCaptureDelay;
unsigned long long totalSamplesCaptured;
};</pre>
<section>
<h2>
Expand Down Expand Up @@ -2636,11 +2632,6 @@ <h2>
{{totalAudioEnergy}} to compute an average audio level over
different intervals.
</p>
<p>
{{totalSamplesDuration}} does not include samples dropped
before reaching this media source, see
{{droppedSamplesDuration}}.
</p>
</dd>
<dt>
<dfn>echoReturnLoss</dfn> of type <span class=
Expand Down Expand Up @@ -2672,71 +2663,6 @@ <h2>
<strong>least audio energy</strong> is considered for any sample.
</p>
</dd>
<dt>
<dfn>droppedSamplesDuration</dfn> of type <span class=
"idlMemberType">double</span>
</dt>
<dd>
<p>
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.
</p>
<p class="note">
This metric is a feature at risk due to lack of consensus.
</p>
</dd>
<dt>
<dfn>droppedSamplesEvents</dfn> of type <span class=
"idlMemberType">unsigned long</span>
</dt>
<dd>
<p>
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.
</p>
<p class="note">
This metric is a feature at risk due to lack of consensus.
</p>
</dd>
<dt>
<dfn>totalCaptureDelay</dfn> of type <span class=
"idlMemberType">double</span>
</dt>
<dd>
<p>
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.
</p>
<p class="note">
This metric is a feature at risk due to lack of consensus.
</p>
</dd>
<dt>
<dfn>totalSamplesCaptured</dfn> of type <span class=
"idlMemberType">unsigned long long</span>
</dt>
<dd>
<p>
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.
</p>
<p class="note">
This metric is a feature at risk due to lack of consensus.
</p>
</dd>
</dl>
</section>
</div>
Expand Down

0 comments on commit bc223da

Please sign in to comment.