diff --git a/index.html b/index.html index 8418cfa..705cdae 100644 --- a/index.html +++ b/index.html @@ -512,10 +512,6 @@
[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; @@ -526,10 +522,13 @@The MediaStreamTrackAudioStats interface
The following metrics lack Working Group consensus: - {{MediaStreamTrackAudioStats/deliveredFrames}}, - {{MediaStreamTrackAudioStats/deliveredFramesDuration}}, - {{MediaStreamTrackAudioStats/totalFrames}} and - {{MediaStreamTrackAudioStats/totalFramesDuration}}. See partial interface MediaStreamTrackAudioStats { + readonly attribute unsigned long long deliveredFrames; + readonly attribute DOMHighResTimeStamp deliveredFramesDuration; + readonly attribute unsigned long long totalFrames; + readonly attribute DOMHighResTimeStamp totalFramesDuration; +}; + See Issue #129.