henbos
henbos
If you look at RTCStats and its subdirectory you'll notice the metrics are very much not up to date. For example [RTCOutboundRtpStreamStats in dom.generated.d.ts](https://github.com/microsoft/TypeScript-DOM-lib-generator/blob/main/baselines/dom.generated.d.ts#L1343) appears to be missing 20-30 or...
We create an awful lot of `codec` stats objects. Every PT is listed for every m= section. And they are listed for both inbound and outbound direction, so you get...
Probably easiest to remove tests for unimplemented provisional metrics, in case they get implemented in the future we should add tests as part of those efforts
Good source of reference: https://webrtc-stats.callstats.io/verify/ @vr000m @alvestrand @dontcallmedom
It's only implemented in inbound-rtp, [not remote-inbound-rtp](https://wpt.fyi/results/webrtc-stats/supported-stats.html?label=experimental&label=master&aligned). Let's just move it?
Clarify which metrics are only applicable to a particular kind according to implementation interest.
Some metrics are defined for both audio and video but have only been implemented for one of the kinds. As a follow-up to "move unimplemented metrics to provisional spec" (#621...
There has been not enough interest to implement this for audio for years. Maybe easier to update the spec to match the implementation? (Can always revisit later if there is...
In #597, we decided to expose whether or not the RTP stream is configured to be sent. However due to qualityLimitationReasons even a stream that is configured to send could...
End-to-end delay refers to the time it takes between the capture of a video frame or audio sample and the playout of that frame or sample at another endpoint. This...
The type definition for ["outbound-rtp"](https://w3c.github.io/webrtc-stats/#dom-rtcstatstype-outbound-rtp) says: ``` Statistics for an outbound RTP stream that is currently sent with this {{RTCPeerConnection}} object. ``` But [The RTP statistics hierarchy](https://w3c.github.io/webrtc-stats/#the-rtp-statistics-hierarchy) says: ``` RTP...