MCPcopy Create free account
hub / github.com/LabSound/LabSound / ChannelMergerNode

Method ChannelMergerNode

src/core/ChannelMergerNode.cpp:25–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23}
24
25ChannelMergerNode::ChannelMergerNode(AudioContext & ac, int numberOfInputs_)
26 : AudioNode(ac, *desc())
27 , m_desiredNumberOfOutputChannels(numberOfInputs_)
28{
29 addInputs(numberOfInputs_);
30 addOutput(std::unique_ptr<AudioNodeOutput>(new AudioNodeOutput(this, 1)));
31 initialize();
32}
33
34void ChannelMergerNode::addInputs(int n)
35{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected