From 4969cc7a1303f6979c9aae4bec0411d839c85b4b Mon Sep 17 00:00:00 2001 From: Charles Ewert Date: Fri, 23 Jun 2023 10:23:21 -0400 Subject: [PATCH] remove aac from list of surround sound codecs --- source/utils/deviceCapabilities.brs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/utils/deviceCapabilities.brs b/source/utils/deviceCapabilities.brs index 1483b53e..f7ca6f86 100644 --- a/source/utils/deviceCapabilities.brs +++ b/source/utils/deviceCapabilities.brs @@ -67,9 +67,8 @@ function getDeviceProfile() as object ' does the users setup support surround sound? maxAudioChannels = "2" ' jellyfin expects this as a string ' in order of preference from left to right - ' aac will be highest priority unless surroundSoundCodec <> "aac" audioCodecs = ["mp3", "vorbis", "opus", "flac", "alac", "ac4", "pcm", "wma", "wmapro"] - surroundSoundCodecs = ["aac", "eac3", "ac3", "vorbis", "dts"] + surroundSoundCodecs = ["eac3", "ac3", "vorbis", "dts"] surroundSoundCodec = invalid if di.GetAudioOutputChannel() = "5.1 surround" maxAudioChannels = "6"