mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix overly strict dovi level testing
4k@60fps is usually only seen in demos so it's a bit overkill for testing dovi caps. Lower it to the more common 4k@24fps. Signed-off-by: nyanmisaka <nst799610810@gmail.com>
This commit is contained in:
parent
20ea6041a7
commit
b1a6fd5d4e
1 changed files with 3 additions and 3 deletions
|
@ -242,16 +242,16 @@ function supportedDolbyVisionProfilesHevc(videoTestElement) {
|
|||
if (browser.xboxOne) return [5, 8];
|
||||
|
||||
const supportedProfiles = [];
|
||||
// Profiles 5/8 4k@60fps
|
||||
// Profiles 5/8 4k@24fps
|
||||
if (videoTestElement.canPlayType) {
|
||||
if (videoTestElement
|
||||
.canPlayType('video/mp4; codecs="dvh1.05.09"')
|
||||
.canPlayType('video/mp4; codecs="dvh1.05.06"')
|
||||
.replace(/no/, '')) {
|
||||
supportedProfiles.push(5);
|
||||
}
|
||||
if (
|
||||
videoTestElement
|
||||
.canPlayType('video/mp4; codecs="dvh1.08.09"')
|
||||
.canPlayType('video/mp4; codecs="dvh1.08.06"')
|
||||
.replace(/no/, '')
|
||||
// LG TVs from at least 2020 onwards should support profile 8, but they don't report it.
|
||||
|| (browser.web0sVersion >= 4)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue