1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix: Remove h264-10bit support from Tizen

(cherry picked from commit 0ad87f3b87)
This commit is contained in:
Dennis de Lange 2023-09-22 17:41:26 +02:00 committed by Dmitry Lyzo
parent 6f2e896a8b
commit a4d3ba5d67

View file

@ -848,10 +848,9 @@ export default function (options) {
maxH264Level = 52;
}
if ((browser.tizen
|| videoTestElement.canPlayType('video/mp4; codecs="avc1.6e0033"').replace(/no/, ''))
if (videoTestElement.canPlayType('video/mp4; codecs="avc1.6e0033"').replace(/no/, '')
// These tests are passing in safari, but playback is failing
&& !browser.safari && !browser.iOS && !browser.web0s && !browser.edge && !browser.mobile
&& !browser.safari && !browser.iOS && !browser.web0s && !browser.edge && !browser.mobile && !browser.tizen
) {
h264Profiles += '|high 10';
}