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
16 changes: 15 additions & 1 deletion inputfiles/patches/webcodecs.kdl
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,20 @@ removals {
}

dictionary VideoEncoderConfig {
member hevc // Blink only as of 2025-12
// https://w3c.github.io/webcodecs/hevc_codec_registration.html
// Blink only as of 2025-12
member hevc
}

dictionary VideoEncoderEncodeOptions {
// https://w3c.github.io/webcodecs/av1_codec_registration.html
// Blink only as of 2025-12
member av1
// https://w3c.github.io/webcodecs/hevc_codec_registration.html
// Blink only as of 2025-12
member hevc
// https://w3c.github.io/webcodecs/vp9_codec_registration.html
// Blink only as of 2025-12
member vp9
}
}
9 changes: 0 additions & 9 deletions inputfiles/removedTypes.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -253,15 +253,6 @@
"rotation": null // No implementation as of 2025-02
}
}
},
"VideoEncoderEncodeOptions": {
"members": {
"member": {
"av1": null, // Blink only as of 2025-05
"hevc": null, // No implementation as of 2025-05
"vp9": null // Blink only as of 2025-05
}
}
}
}
}
Expand Down