From e0cb79088ba923d7ec84cf655d5d41980808b5f4 Mon Sep 17 00:00:00 2001 From: Dmitry Lyzo Date: Tue, 22 Aug 2023 23:20:59 +0300 Subject: [PATCH] fix: Remove Dolby Vision support on Samsung TV --- src/scripts/browserDeviceProfile.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index 2d6e0dad4b..15742edb51 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -833,7 +833,8 @@ export function canPlaySecondaryAudio(videoTestElement) { } if (browser.tizen || browser.web0s) { - hevcVideoRangeTypes += '|HDR10|HLG|DOVI'; + hevcVideoRangeTypes += '|HDR10|HLG'; + if (browser.web0s) hevcVideoRangeTypes += '|DOVI'; vp9VideoRangeTypes += '|HDR10|HLG'; av1VideoRangeTypes += '|HDR10|HLG'; }