What is the correct call sequence between plugin and host when parameters have changed while it is processing audio

Hi,
you forgot two calls:

before calling IComponent::setActive(false) you need to call IAudioProcessor::setProcessing (false).
and after calling IComponent::setActive (true) you need to call IAudioProcessor::setProcessing (true).

And normally a plug-in is only allowed to call IComponentHandler::restartComponent from the UI thread. But we already saw plug-ins doing it whenever they want.

Cheers,
Arne