File tree Expand file tree Collapse file tree 3 files changed +13
-31
lines changed
Expand file tree Collapse file tree 3 files changed +13
-31
lines changed Original file line number Diff line number Diff line change 301301 }
302302 }
303303 },
304- "IDBOpenDBRequest" : {
305- "name" : " IDBOpenDBRequest" ,
306- "extends" : " IDBRequest<IDBDatabase>"
307- },
308304 "HTMLInputElement" : {
309305 "properties" : {
310306 "property" : {
314310 }
315311 }
316312 },
317- // The spec removed `timestamp` but browsers still have it.
318- // https://github.com/w3c/webrtc-encoded-transform/pull/204
319- "RTCEncodedAudioFrame" : {
320- "properties" : {
321- "property" : {
322- "timestamp" : {
323- "mdnUrl" : " https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp" ,
324- "name" : " timestamp" ,
325- "type" : " long long" ,
326- "readonly" : true
327- }
328- }
329- }
330- },
331- "RTCEncodedVideoFrame" : {
332- "properties" : {
333- "property" : {
334- "timestamp" : {
335- "mdnUrl" : " https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp" ,
336- "name" : " timestamp" ,
337- "type" : " long long" ,
338- "readonly" : true
339- }
340- }
341- }
342- },
343313 "RuntimeError" : {
344314 "name" : " RuntimeError" ,
345315 "extends" : " Error" ,
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ interface IDBRequest {
66 property result overrideType= T
77}
88
9+ interface IDBOpenDBRequest extends= IDBRequest<IDBDatabase>
10+
911type-def IDBValidKey {
1012 type long
1113 type DOMString
@@ -14,4 +16,4 @@ type-def IDBValidKey {
1416 type sequence {
1517 type IDBValidKey
1618 }
17- }
19+ }
Original file line number Diff line number Diff line change 11// https://w3c.github.io/webrtc-encoded-transform/
22
3+ // The spec removed `timestamp` but browsers still have it as of 2025-12
4+ // https://github.com/w3c/webrtc-encoded-transform/pull/204
5+ interface RTCEncodedAudioFrame {
6+ property timestamp type= "long long" readonly= #true mdnUrl= "https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp"
7+ }
8+
9+ interface RTCEncodedVideoFrame {
10+ property timestamp type= "long long" readonly= #true mdnUrl= "https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp"
11+ }
12+
313removals {
414 dictionary RTCEncodedAudioFrameMetadata {
515 member audioLevel // No implementation as of 2025-05
You can’t perform that action at this time.
0 commit comments