| 124 | } |
| 125 | |
| 126 | AudioBus * AudioNodeOutput::bus(ContextRenderLock & r) const |
| 127 | { |
| 128 | // only legal during rendering because an in-place bus might have been supplied to pull |
| 129 | ASSERT(r.context()); |
| 130 | return m_inPlaceBus ? m_inPlaceBus : m_internalBus.get(); |
| 131 | } |
| 132 | |
| 133 | int AudioNodeOutput::fanOutCount() |
| 134 | { |