Home
last modified time | relevance | path

Searched refs:sourceChannelCount (Results 1 – 2 of 2) sorted by relevance

/frameworks/av/media/libaaudio/src/client/
DAAudioFlowGraph.cpp36 int32_t sourceChannelCount, in configure() argument
42 __func__, sourceFormat, sourceChannelCount, sinkFormat, sinkChannelCount); in configure()
46 mSource = std::make_unique<SourceFloat>(sourceChannelCount); in configure()
49 mSource = std::make_unique<SourceI16>(sourceChannelCount); in configure()
52 mSource = std::make_unique<SourceI24>(sourceChannelCount); in configure()
61 mVolumeRamp = std::make_unique<RampLinear>(sourceChannelCount); in configure()
68 mClipper = std::make_unique<ClipToRange>(sourceChannelCount); in configure()
74 if (sourceChannelCount == 1 && sinkChannelCount > 1) { in configure()
78 } else if (sourceChannelCount != sinkChannelCount) { in configure()
DAAudioFlowGraph.h42 int32_t sourceChannelCount,