| 52 | } |
| 53 | |
| 54 | int AudioSummingJunction::numberOfRenderingConnections(ContextRenderLock &) const |
| 55 | { |
| 56 | int count = 0; |
| 57 | for (auto i : m_renderingOutputs) |
| 58 | { |
| 59 | if (!i.expired()) |
| 60 | ++count; |
| 61 | } |
| 62 | return count; |
| 63 | } |
| 64 | |
| 65 | void AudioSummingJunction::junctionConnectOutput(std::shared_ptr<AudioNodeOutput> o) |
| 66 | { |
no outgoing calls
no test coverage detected