Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -512,10 +512,6 @@ <h4>The MediaStreamTrackAudioStats interface</h4>
<div>
<pre class="idl" data-cite="HR-TIME">[Exposed=(Window,DedicatedWorker)]
interface MediaStreamTrackAudioStats {
readonly attribute unsigned long long deliveredFrames;
readonly attribute DOMHighResTimeStamp deliveredFramesDuration;
readonly attribute unsigned long long totalFrames;
readonly attribute DOMHighResTimeStamp totalFramesDuration;
readonly attribute DOMHighResTimeStamp latency;
readonly attribute DOMHighResTimeStamp averageLatency;
readonly attribute DOMHighResTimeStamp minimumLatency;
Expand All @@ -526,10 +522,13 @@ <h4>The MediaStreamTrackAudioStats interface</h4>
</pre>
<div class="note">
<p>The following metrics lack Working Group consensus:
{{MediaStreamTrackAudioStats/deliveredFrames}},
{{MediaStreamTrackAudioStats/deliveredFramesDuration}},
{{MediaStreamTrackAudioStats/totalFrames}} and
{{MediaStreamTrackAudioStats/totalFramesDuration}}. See <a
<pre class="idl" data-cite="HR-TIME">partial interface MediaStreamTrackAudioStats {
readonly attribute unsigned long long deliveredFrames;
readonly attribute DOMHighResTimeStamp deliveredFramesDuration;
readonly attribute unsigned long long totalFrames;
readonly attribute DOMHighResTimeStamp totalFramesDuration;
};
</pre>See <a
href="https://github.com/w3c/mediacapture-extensions/issues/129">Issue
#129</a>.</p>
</div>
Expand Down