| 41 | AudioSummingJunction::~AudioSummingJunction() {} |
| 42 | |
| 43 | bool AudioSummingJunction::isConnected(std::shared_ptr<AudioNodeOutput> o) const |
| 44 | { |
| 45 | std::lock_guard<std::mutex> lock(junctionMutex); |
| 46 | |
| 47 | for (auto i : m_connectedOutputs) |
| 48 | if (i.lock() == o) |
| 49 | return true; |
| 50 | |
| 51 | return false; |
| 52 | } |
| 53 | |
| 54 | int AudioSummingJunction::numberOfRenderingConnections(ContextRenderLock &) const |
| 55 | { |
nothing calls this directly
no outgoing calls
no test coverage detected