| 59 | } |
| 60 | |
| 61 | void AudioNodeOutput::updateInternalBus() |
| 62 | { |
| 63 | if (numberOfChannels() == m_internalBus->numberOfChannels()) |
| 64 | return; |
| 65 | |
| 66 | m_internalBus.reset(new AudioBus(numberOfChannels(), AudioNode::ProcessingSizeInFrames)); |
| 67 | } |
| 68 | |
| 69 | void AudioNodeOutput::updateRenderingState(ContextRenderLock & r) |
| 70 | { |
nothing calls this directly
no test coverage detected