mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add proper checks for DTS
This commit is contained in:
parent
814b96799c
commit
6fab78d49f
1 changed files with 4 additions and 0 deletions
|
@ -366,7 +366,11 @@ define(['browser'], function (browser) {
|
|||
videoAudioCodecs.push('mp2');
|
||||
}
|
||||
|
||||
<<<<<<< HEAD
|
||||
var supportsDts = browser.tizen || browser.web0s || options.supportsDts;
|
||||
=======
|
||||
var supportsDts = browser.tizen || browser.web0s || options.supportsDts || videoTestElement.canPlayType('video/mp4; codecs="dts-"') || videoTestElement.canPlayType('video/mp4; codecs="dts+"');
|
||||
>>>>>>> 3706d4884... Add proper checks for DTS
|
||||
|
||||
// DTS audio not supported in 2018 models (Tizen 4.0)
|
||||
if (browser.tizenVersion >= 4) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue