| 24 | } |
| 25 | |
| 26 | AudioHardwareInputNode::AudioHardwareInputNode(AudioContext & ac, AudioSourceProvider * audioSourceProvider) |
| 27 | : AudioNode(ac, *desc()) |
| 28 | , m_audioSourceProvider(audioSourceProvider) |
| 29 | { |
| 30 | addOutput(std::unique_ptr<AudioNodeOutput>(new AudioNodeOutput(this, 1))); // Num output channels will be re-configured in process |
| 31 | initialize(); |
| 32 | } |
| 33 | |
| 34 | |
| 35 | AudioHardwareInputNode::~AudioHardwareInputNode() |
nothing calls this directly
no outgoing calls
no test coverage detected