Home
last modified time | relevance | path

Searched refs:channelLayout (Results 1 – 8 of 8) 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/armnn/tests/
DInferenceTestImage.cpp27 unsigned int GetImageChannelIndex(ImageChannelLayout channelLayout, ImageChannel channel) in GetImageChannelIndex() argument
29 switch (channelLayout) in GetImageChannelIndex()
36 …throw UnknownImageChannelLayout(fmt::format("Unknown layout {}", static_cast<int>(channelLayout))); in GetImageChannelIndex()
279 std::vector<float> GetImageDataInArmNnLayoutAsFloats(ImageChannelLayout channelLayout, in GetImageDataInArmNnLayoutAsFloats() argument
297 …const unsigned int rDstIndex = GetImageChannelIndex(channelLayout, ImageChannel::R) * h * w + j * … in GetImageDataInArmNnLayoutAsFloats()
298 …const unsigned int gDstIndex = GetImageChannelIndex(channelLayout, ImageChannel::G) * h * w + j * … in GetImageDataInArmNnLayoutAsFloats()
299 …const unsigned int bDstIndex = GetImageChannelIndex(channelLayout, ImageChannel::B) * h * w + j * … in GetImageDataInArmNnLayoutAsFloats()
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/ffmpeg/src/main/jni/
Dffmpeg_jni.cc292 int channelLayout = context->channel_layout; in decodePacket() local
302 av_opt_set_int(resampleContext, "in_channel_layout", channelLayout, 0); in decodePacket()
303 av_opt_set_int(resampleContext, "out_channel_layout", channelLayout, 0); in decodePacket()
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/ffmpeg/src/main/jni/
Dffmpeg_jni.cc292 int channelLayout = context->channel_layout; in decodePacket() local
302 av_opt_set_int(resampleContext, "in_channel_layout", channelLayout, 0); in decodePacket()
303 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.cpp1060 channelCount = hUniDrcConfig->channelLayout.baseChannelCount; in _skipEqInstructions()
1353 hUniDrcConfig->channelLayout.baseChannelCount; in _readDrcInstructionsUniDrc()
1555 err = _readDownmixInstructions(hBs, 1, &hUniDrcConfig->channelLayout, in _readDrcExtensionV1()
1713 diff |= (FDKmemcmp(&tmpChan, &hUniDrcConfig->channelLayout, in drcDec_readUniDrcConfig()
1715 hUniDrcConfig->channelLayout = tmpChan; in drcDec_readUniDrcConfig()
1722 err = _readDownmixInstructions(hBs, 0, &hUniDrcConfig->channelLayout, in drcDec_readUniDrcConfig()
DdrcDec_types.h336 CHANNEL_LAYOUT channelLayout; member