safe without a Render lock because vector is immutable
| 392 | |
| 393 | // safe without a Render lock because vector is immutable |
| 394 | std::shared_ptr<AudioNodeInput> AudioNode::input(int i) |
| 395 | { |
| 396 | if (i < m_inputs.size()) return m_inputs[i]; |
| 397 | return nullptr; |
| 398 | } |
| 399 | |
| 400 | // safe without a Render lock because vector is immutable |
| 401 | std::shared_ptr<AudioNodeOutput> AudioNode::output(int i) |
no test coverage detected