| 17 | { |
| 18 | |
| 19 | AudioNodeDescriptor * ChannelMergerNode::desc() |
| 20 | { |
| 21 | static AudioNodeDescriptor d {nullptr, nullptr}; |
| 22 | return &d; |
| 23 | } |
| 24 | |
| 25 | ChannelMergerNode::ChannelMergerNode(AudioContext & ac, int numberOfInputs_) |
| 26 | : AudioNode(ac, *desc()) |
nothing calls this directly
no outgoing calls
no test coverage detected