webrtc-priority.idl (568B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: WebRTC Priority Control API (https://w3c.github.io/webrtc-priority/) 5 6 enum RTCPriorityType { 7 "very-low", 8 "low", 9 "medium", 10 "high" 11 }; 12 13 partial dictionary RTCRtpEncodingParameters { 14 RTCPriorityType priority = "low"; 15 RTCPriorityType networkPriority; 16 }; 17 18 partial interface RTCDataChannel { 19 readonly attribute RTCPriorityType priority; 20 }; 21 22 partial dictionary RTCDataChannelInit { 23 RTCPriorityType priority = "low"; 24 };