| 32 | } |
| 33 | |
| 34 | void ChannelMergerNode::addInputs(int n) |
| 35 | { |
| 36 | // Create the requested number of inputs. |
| 37 | for (int i = 0; i < n; ++i) |
| 38 | addInput(std::unique_ptr<AudioNodeInput>(new AudioNodeInput(this))); |
| 39 | } |
| 40 | |
| 41 | void ChannelMergerNode::process(ContextRenderLock & r, int bufferSize) |
| 42 | { |
nothing calls this directly
no outgoing calls
no test coverage detected