| 15 | |
| 16 | |
| 17 | AudioNodeDescriptor * RecorderNode::desc() |
| 18 | { |
| 19 | static AudioNodeDescriptor d {nullptr, nullptr}; |
| 20 | return &d; |
| 21 | } |
| 22 | |
| 23 | RecorderNode::RecorderNode(AudioContext& r, int channelCount) |
| 24 | : AudioNode(r, *desc()) |
nothing calls this directly
no outgoing calls
no test coverage detected