| 151 | } |
| 152 | |
| 153 | void AudioNodeOutput::addInput(ContextGraphLock & g, std::shared_ptr<AudioNodeInput> input) |
| 154 | { |
| 155 | if (!input) |
| 156 | return; |
| 157 | |
| 158 | m_inputs.emplace_back(input); |
| 159 | input->setDirty(); |
| 160 | } |
| 161 | |
| 162 | void AudioNodeOutput::removeInput(ContextGraphLock & g, std::shared_ptr<AudioNodeInput> input) |
| 163 | { |