| 637 | } |
| 638 | |
| 639 | bool AudioNode::inputsAreSilent(ContextRenderLock & r) |
| 640 | { |
| 641 | for (auto & in : m_inputs) |
| 642 | { |
| 643 | if (!in->bus(r)->isSilent()) |
| 644 | { |
| 645 | return false; |
| 646 | } |
| 647 | } |
| 648 | return true; |
| 649 | } |
| 650 | |
| 651 | void AudioNode::silenceOutputs(ContextRenderLock & r) |
| 652 | { |
no test coverage detected