From aa4004a1befb7ebc71e1a21e725446e6b2149e95 Mon Sep 17 00:00:00 2001 From: Dmitry Lyzo Date: Fri, 20 Sep 2024 03:12:51 +0300 Subject: [PATCH] Allow Dolby Vision fallback layer on Tizen 3+ --- src/scripts/browserDeviceProfile.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/scripts/browserDeviceProfile.js b/src/scripts/browserDeviceProfile.js index 23e27fbd5d..7e2beba125 100644 --- a/src/scripts/browserDeviceProfile.js +++ b/src/scripts/browserDeviceProfile.js @@ -1107,16 +1107,28 @@ export default function (options) { let vp9VideoRangeTypes = 'SDR'; let av1VideoRangeTypes = 'SDR'; + if (browser.tizenVersion >= 3) { + hevcVideoRangeTypes += '|DOVIWithSDR'; + } + if (supportsHdr10(options)) { hevcVideoRangeTypes += '|HDR10'; vp9VideoRangeTypes += '|HDR10'; av1VideoRangeTypes += '|HDR10'; + + if (browser.tizenVersion >= 3) { + hevcVideoRangeTypes += '|DOVIWithHDR10'; + } } if (supportsHlg(options)) { hevcVideoRangeTypes += '|HLG'; vp9VideoRangeTypes += '|HLG'; av1VideoRangeTypes += '|HLG'; + + if (browser.tizenVersion >= 3) { + hevcVideoRangeTypes += '|DOVIWithHLG'; + } } if (supportsDolbyVision(options)) {