File tree 1 file changed +12
-12
lines changed
1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -33,20 +33,20 @@ A page would like to validate that its encoder and muxer generates media whose `
33
33
The ` HTMLMediaElement ` ’s ` VideoTrack ` and ` AudioTrack ` objects would vend a new attribute ` VideoTrackConfiguration ` and ` AudioTrackConfiguration ` .
34
34
35
35
```
36
- interface VideoTrackConfiguration {
37
- readonly attribute DOMString codec;
38
- readonly attribute unsigned long long bitrate;
39
- readonly attribute double framerate;
40
- readonly attribute unsigned long width;
41
- readonly attribute unsigned long height;
42
- readonly attribute VideoColorSpace colorSpace;
36
+ dictionary VideoTrackConfiguration {
37
+ DOMString codec;
38
+ unsigned long long bitrate;
39
+ double framerate;
40
+ unsigned long width;
41
+ unsigned long height;
42
+ VideoColorSpace colorSpace;
43
43
};
44
44
45
- interface AudioTrackConfiguration {
46
- readonly attribute DOMString codec;
47
- readonly attribute unsigned long long bitrate;
48
- readonly attribute unsigned long sampleRate;
49
- readonly attribute unsigned long numberOfChannels;
45
+ dictionary AudioTrackConfiguration {
46
+ DOMString codec;
47
+ unsigned long long bitrate;
48
+ unsigned long sampleRate;
49
+ unsigned long numberOfChannels;
50
50
};
51
51
52
52
partial interface VideoTrack {
You can’t perform that action at this time.
0 commit comments