| 21 | } |
| 22 | |
| 23 | ChannelSplitterNode::ChannelSplitterNode(AudioContext & ac, int numberOfOutputs_) |
| 24 | : AudioNode(ac, *desc()) |
| 25 | { |
| 26 | addInput(std::unique_ptr<AudioNodeInput>(new AudioNodeInput(this))); |
| 27 | addOutputs(numberOfOutputs_); |
| 28 | initialize(); |
| 29 | } |
| 30 | |
| 31 | void ChannelSplitterNode::addOutputs(int numberOfOutputs_) |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected