From e910df028e77337a32572a1ac0cc753bbf8c664b Mon Sep 17 00:00:00 2001 From: "Schreiner, Stephan" Date: Fri, 26 Sep 2025 09:12:14 +0200 Subject: [PATCH] bugfix: exclude LFE2 from effective channels --- src/streaming/utils/AudioChannelConfiguration.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/streaming/utils/AudioChannelConfiguration.js b/src/streaming/utils/AudioChannelConfiguration.js index 0c212f6185..6c6f59b59d 100644 --- a/src/streaming/utils/AudioChannelConfiguration.js +++ b/src/streaming/utils/AudioChannelConfiguration.js @@ -93,9 +93,10 @@ function _getNChanDolby2015(value) { } // see ETSI TS 103190-2, table A.27 - // 0b001101111000000010: single channel flags + // 0b001100111000000010: single channel flags // 0b110010000110111101: channel pair flags - return _getNChanFromBitMask(value, [0b001101111000000010, 0b110010000110111101]); + // 0b000001000001000000: LFE - excluded + return _getNChanFromBitMask(value, [0b001100111000000010, 0b110010000110111101]); } function _getNChanDTSUHD(value) {