blob: a41abb55eaeef0abc0695384477f1cd63ddf78ad [file] [log] [blame]
Victor Porof6e096922022-06-10 13:01:05 +00001// GENERATED CONTENT - DO NOT EDIT
2// Content was automatically extracted by Reffy into webref
3// (https://github.com/w3c/webref)
4// Source: MediaStreamTrack Content Hints (https://w3c.github.io/mst-content-hint/)
5
6partial interface MediaStreamTrack {
7 attribute DOMString contentHint;
8};
9
10enum RTCDegradationPreference {
11 "maintain-framerate",
12 "maintain-resolution",
13 "balanced"
14};
15
16partial dictionary RTCRtpSendParameters {
17 RTCDegradationPreference degradationPreference;
18};