PluginProcessor constructor is called twice by audio plugin host

Don’t actually do anything time consuming in the constructor. (Start doing it later instead.) It can easily happen that the host constructs the plugin, immediately destroys it and then constructs it again. Also, if there are multiple instances of the plugin in the host project, the host of course calls the constructor for each instance separately.

1 Like