Searched refs:channelLayout (Results 1 – 5 of 5) sorted by relevance
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/ |
D | FlatManifestWriterImpl.java | 405 final int channelLayout = dtsSpecificBox.getChannelLayout(); in getDtsAudioQuality() local 406 dtsCodecPrivateData.put((byte) (channelLayout & 0xff)); in getDtsAudioQuality() 407 dtsCodecPrivateData.put((byte) (channelLayout >>> 8)); in getDtsAudioQuality() 408 dtsCodecPrivateData.put((byte) (channelLayout >>> 16)); in getDtsAudioQuality() 409 dtsCodecPrivateData.put((byte) (channelLayout >>> 24)); in getDtsAudioQuality() 453 final int channelLayout = dtsSpecificBox.getChannelLayout(); in getNumChannelsAndMask() local 456 if ((channelLayout & 0x0001) == 0x0001) { in getNumChannelsAndMask() 461 if ((channelLayout & 0x0002) == 0x0002) { in getNumChannelsAndMask() 467 if ((channelLayout & 0x0004) == 0x0004) { in getNumChannelsAndMask() 474 if ((channelLayout & 0x0008) == 0x0008) { in getNumChannelsAndMask() [all …]
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/ |
D | DTSSpecificBox.java | 31 int channelLayout; field in DTSSpecificBox 60 channelLayout = brb.readBits(16); in _parseDetails() 82 bwb.writeBits(channelLayout, 16); in getContent() 179 return channelLayout; in getChannelLayout() 182 public void setChannelLayout(int channelLayout) { in setChannelLayout() argument 183 this.channelLayout = channelLayout; in setChannelLayout()
|
/external/aac/libDRCdec/src/ |
D | drcDec_selectionProcess.cpp | 679 hUniDrcConfig->channelLayout.baseChannelCount) { in drcDec_SelectionProcess_Process() 681 hUniDrcConfig->channelLayout.baseChannelCount; in drcDec_SelectionProcess_Process() 2038 hUniDrcConfig->channelLayout.baseChannelCount; in _generateOutputInfo() 2040 hUniDrcConfig->channelLayout.baseChannelCount; in _generateOutputInfo() 2179 hUniDrcConfig->channelLayout.baseChannelCount; in _selectDownmixMatrix() 2181 hUniDrcConfig->channelLayout.baseChannelCount; in _selectDownmixMatrix() 2920 pDown, hUniDrcConfig->channelLayout.baseChannelCount); /* e = 1 */ in _getSignalPeakLevel() 2925 for (j = 0; j < hUniDrcConfig->channelLayout.baseChannelCount; j++) { in _getSignalPeakLevel() 2926 coeff = pDown->downmixCoefficient[j + i * hUniDrcConfig->channelLayout in _getSignalPeakLevel()
|
D | drcDec_reader.cpp | 1053 channelCount = hUniDrcConfig->channelLayout.baseChannelCount; in _skipEqInstructions() 1347 hUniDrcConfig->channelLayout.baseChannelCount; in _readDrcInstructionsUniDrc() 1549 err = _readDownmixInstructions(hBs, 1, &hUniDrcConfig->channelLayout, in _readDrcExtensionV1() 1707 diff |= (FDKmemcmp(&tmpChan, &hUniDrcConfig->channelLayout, in drcDec_readUniDrcConfig() 1709 hUniDrcConfig->channelLayout = tmpChan; in drcDec_readUniDrcConfig() 1716 err = _readDownmixInstructions(hBs, 0, &hUniDrcConfig->channelLayout, in drcDec_readUniDrcConfig()
|
D | drcDec_types.h | 333 CHANNEL_LAYOUT channelLayout; member
|