Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/libaaudio/src/client/
H A DAAudioFlowGraph.cpp38 int32_t sourceChannelCount, in configure() argument
45 __func__, sourceFormat, sourceChannelCount, sinkFormat, sinkChannelCount); in configure()
49 mSource = std::make_unique<SourceFloat>(sourceChannelCount); in configure()
52 mSource = std::make_unique<SourceI16>(sourceChannelCount); in configure()
55 mSource = std::make_unique<SourceI24>(sourceChannelCount); in configure()
58 mSource = std::make_unique<SourceI32>(sourceChannelCount); in configure()
67 mVolumeRamp = std::make_unique<RampLinear>(sourceChannelCount); in configure()
74 mClipper = std::make_unique<ClipToRange>(sourceChannelCount); in configure()
80 if (sourceChannelCount == 1 && sinkChannelCount > 1) { in configure()
84 } else if (sourceChannelCount != sinkChannelCount) { in configure()
H A DAAudioFlowGraph.h42 int32_t sourceChannelCount,