| 206 | } |
| 207 | |
| 208 | void AudioNodeOutput::disconnectAllParams(ContextGraphLock & g, std::shared_ptr<AudioNodeOutput> self) |
| 209 | { |
| 210 | // AudioParam::disconnect() changes m_params by calling removeParam(). |
| 211 | while (self->m_params.size()) |
| 212 | { |
| 213 | auto param = self->m_params.begin(); |
| 214 | (*param)->disconnect(g, *param, self); |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | void AudioNodeOutput::disconnectAll(ContextGraphLock & g, std::shared_ptr<AudioNodeOutput> self) |
| 219 | { |
no test coverage detected