commit 11b99a0665321b7c347b95b5e26e8e328898bee5
parent 942dd292a5cf462355b799dff3dadac9b970ad9e
Author: Eugene Zemtsov <eugene@chromium.org>
Date: Mon, 8 Dec 2025 12:27:30 +0000
Bug 2004335 [wpt PR 56505] - webcodecs: Enable flag to change QP range for VP9 and AV1, a=testonly
Automatic update from web-platform-tests
webcodecs: Enable flag to change QP range for VP9 and AV1
and fixing the tests
Bug: 446157737
Change-Id: I4f86bd721fcb69d18c7070dd264eacf1df9dee34
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7224767
Reviewed-by: Dale Curtis <dalecurtis@chromium.org>
Commit-Queue: Eugene Zemtsov <eugene@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1554219}
--
wpt-commits: 87a6d9877d6eb08755c742cd7df6a528cebb64ff
wpt-pr: 56505
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/testing/web-platform/tests/webcodecs/per-frame-qp-encoding.https.any.js b/testing/web-platform/tests/webcodecs/per-frame-qp-encoding.https.any.js
@@ -24,11 +24,11 @@ function get_config() {
function get_qp_range() {
switch (location.search) {
case '?av1':
- return {min: 1, max: 63};
+ return {min: 1, max: 255};
case '?vp9_p0':
- return {min: 1, max: 63};
+ return {min: 1, max: 255};
case '?vp9_p2':
- return {min: 1, max: 63};
+ return {min: 1, max: 255};
case '?h264':
return {min: 1, max: 51};
case '?h265':