From cb085ff955f373132742f92aa0ba009d2bd3dfce Mon Sep 17 00:00:00 2001 From: Raafat Akkad Date: Thu, 6 Jun 2024 19:34:52 +0100 Subject: [PATCH] Force DoVi on browser.xboxOne as edgeUWP says it can't play it Unsure if DoVi profile 8 works on Xbox but the video plays --- src/scripts/browserDeviceProfile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index cb19a4172f..18d5ea8788 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -239,6 +239,8 @@ function supportsDolbyVision(options) { } function supportedDolbyVisionProfilesHevc(videoTestElement) { + if (browser.xboxOne) return [5, 8]; + const supportedProfiles = []; // Profiles 5/8 4k@60fps if (videoTestElement.canPlayType) {