Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 0 additions & 26 deletions inputfiles/addedTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -314,32 +314,6 @@
}
}
},
// The spec removed `timestamp` but browsers still have it.
// https://github.com/w3c/webrtc-encoded-transform/pull/204
"RTCEncodedAudioFrame": {
"properties": {
"property": {
"timestamp": {
"mdnUrl": "https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp",
"name": "timestamp",
"type": "long long",
"readonly": true
}
}
}
},
"RTCEncodedVideoFrame": {
"properties": {
"property": {
"timestamp": {
"mdnUrl": "https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp",
"name": "timestamp",
"type": "long long",
"readonly": true
}
}
}
},
"RuntimeError": {
"name": "RuntimeError",
"extends": "Error",
Expand Down
10 changes: 10 additions & 0 deletions inputfiles/patches/webrtc-encoded-transform.kdl
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
// https://w3c.github.io/webrtc-encoded-transform/

// The spec removed `timestamp` but browsers still have it as of 2025-12
// https://github.com/w3c/webrtc-encoded-transform/pull/204
interface RTCEncodedAudioFrame {
property timestamp type="long long" readonly=#true mdnUrl="https://developer.mozilla.org/docs/Web/API/RTCEncodedAudioFrame/timestamp"
}

interface RTCEncodedVideoFrame {
property timestamp type="long long" readonly=#true mdnUrl="https://developer.mozilla.org/docs/Web/API/RTCEncodedVideoFrame/timestamp"
}

removals {
dictionary RTCEncodedAudioFrameMetadata {
member audioLevel // No implementation as of 2025-05
Expand Down