| 80 | } |
| 81 | |
| 82 | void AudioNodeOutput::propagateChannelCount(ContextRenderLock & r) |
| 83 | { |
| 84 | if (isChannelCountKnown()) |
| 85 | { |
| 86 | ASSERT(r.context()); |
| 87 | |
| 88 | // Announce to any nodes we're connected to that we changed our channel count for its input. |
| 89 | for (auto in : m_inputs) |
| 90 | { |
| 91 | auto connectionNode = in->destinationNode(); |
| 92 | connectionNode->checkNumberOfChannelsForInput(r, in.get()); |
| 93 | } |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | AudioBus * AudioNodeOutput::pull(ContextRenderLock & r, AudioBus * inPlaceBus, int bufferSize) |
| 98 | { |
nothing calls this directly
no test coverage detected