Skip to content

Commit 8c77af5

Browse files
authored
bugfix: exclude LFE2 from effective channels (Dash-Industry-Forum#4855)
1 parent 9917e1f commit 8c77af5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/streaming/utils/AudioChannelConfiguration.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,10 @@ function _getNChanDolby2015(value) {
9393
}
9494

9595
// see ETSI TS 103190-2, table A.27
96-
// 0b001101111000000010: single channel flags
96+
// 0b001100111000000010: single channel flags
9797
// 0b110010000110111101: channel pair flags
98-
return _getNChanFromBitMask(value, [0b001101111000000010, 0b110010000110111101]);
98+
// 0b000001000001000000: LFE - excluded
99+
return _getNChanFromBitMask(value, [0b001100111000000010, 0b110010000110111101]);
99100
}
100101

101102
function _getNChanDTSUHD(value) {

0 commit comments

Comments
 (0)