| 196 | } |
| 197 | |
| 198 | void AudioNodeOutput::removeParam(ContextGraphLock & g, std::shared_ptr<AudioParam> param) |
| 199 | { |
| 200 | if (!param) |
| 201 | return; |
| 202 | |
| 203 | auto it = m_params.find(param); |
| 204 | if (it != m_params.end()) |
| 205 | m_params.erase(it); |
| 206 | } |
| 207 | |
| 208 | void AudioNodeOutput::disconnectAllParams(ContextGraphLock & g, std::shared_ptr<AudioNodeOutput> self) |
| 209 | { |
no outgoing calls
no test coverage detected