Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/streaming/utils/AudioChannelConfiguration.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Loading