diff --git a/index.html b/index.html index 08bf97f..6555866 100644 --- a/index.html +++ b/index.html @@ -1744,6 +1744,63 @@
+ The {{RTCConfiguration}} dictionary is defined in [[WEBRTC]]. + This document extends that dictionary with an additional parameter + to provide a hint on the latency expected by the web application. +
+
+ enum RTCConfigurationExpectedLatency {
+ "best",
+ "no-expectation"
+ };
+ partial dictionary RTCConfiguration {
+ RTCConfigurationExpectedLatency expectedLatency = "best";
+ };
+
+ The latency expected by the web application.
+| Enumeration description (non-normative) | +|
|---|---|
| best | +
+ + The User Agent is expected to set up the network link to optimize the connection latency. + For that purpose, it SHOULD use techniques like network slicing if available. + + |
+
| no-expectation | +
+ + The User Agent is expected to set up the network link without trying to optimize the connection latency. + It MAY instead try to optimize for some other purposes like power consumption. + + |
+