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

Add TrueHD enabling option

This commit is contained in:
Dmitry Lyzo 2024-04-15 22:20:47 +03:00 committed by Dmitry Lyzo
parent ce15adba69
commit 275e18457e
5 changed files with 26 additions and 1 deletions

View file

@ -562,7 +562,7 @@ export default function (options) {
videoAudioCodecs.push('pcm_s24le');
}
if (options.supportsTrueHd) {
if (appSettings.enableTrueHd() || options.supportsTrueHd) {
videoAudioCodecs.push('truehd');
}