Home
last modified time | relevance | path

Searched refs:channelLayout (Results 1 – 6 of 6) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
DFlatManifestWriterImpl.java405 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/
DDTSSpecificBox.java31 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/exoplayer/tree/extensions/ffmpeg/src/main/jni/
Dffmpeg_jni.cc290 int channelLayout = context->channel_layout; in decodePacket() local
300 av_opt_set_int(resampleContext, "in_channel_layout", channelLayout, 0); in decodePacket()
301 av_opt_set_int(resampleContext, "out_channel_layout", channelLayout, 0); in decodePacket()
/external/aac/libDRCdec/src/
DdrcDec_selectionProcess.cpp677 hUniDrcConfig->channelLayout.baseChannelCount) { in drcDec_SelectionProcess_Process()
679 hUniDrcConfig->channelLayout.baseChannelCount; in drcDec_SelectionProcess_Process()
2076 hUniDrcConfig->channelLayout.baseChannelCount; in _generateOutputInfo()
2078 hUniDrcConfig->channelLayout.baseChannelCount; in _generateOutputInfo()
2223 hUniDrcConfig->channelLayout.baseChannelCount; in _selectDownmixMatrix()
2225 hUniDrcConfig->channelLayout.baseChannelCount; in _selectDownmixMatrix()
2969 pDown, hUniDrcConfig->channelLayout.baseChannelCount); /* e = 1 */ in _getSignalPeakLevel()
2974 for (j = 0; j < hUniDrcConfig->channelLayout.baseChannelCount; j++) { in _getSignalPeakLevel()
2975 coeff = pDown->downmixCoefficient[j + i * hUniDrcConfig->channelLayout in _getSignalPeakLevel()
DdrcDec_reader.cpp1057 channelCount = hUniDrcConfig->channelLayout.baseChannelCount; in _skipEqInstructions()
1350 hUniDrcConfig->channelLayout.baseChannelCount; in _readDrcInstructionsUniDrc()
1552 err = _readDownmixInstructions(hBs, 1, &hUniDrcConfig->channelLayout, in _readDrcExtensionV1()
1710 diff |= (FDKmemcmp(&tmpChan, &hUniDrcConfig->channelLayout, in drcDec_readUniDrcConfig()
1712 hUniDrcConfig->channelLayout = tmpChan; in drcDec_readUniDrcConfig()
1719 err = _readDownmixInstructions(hBs, 0, &hUniDrcConfig->channelLayout, in drcDec_readUniDrcConfig()
DdrcDec_types.h336 CHANNEL_LAYOUT channelLayout; member