| 23 | } |
| 24 | |
| 25 | ChannelMergerNode::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 | |
| 34 | void ChannelMergerNode::addInputs(int n) |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected