You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
clap-host always provides audio input and output ports. This isn't as per the specs: a plugin that doesn't implement CLAP_EXT_AUDIO_PORTS has zero audio ports.
This leads to problems if plugin developers use clap-host for testing their plugins.
This code from PluginHost::process() is the problem:
clap-host always provides audio input and output ports. This isn't as per the specs: a plugin that doesn't implement CLAP_EXT_AUDIO_PORTS has zero audio ports.
This leads to problems if plugin developers use clap-host for testing their plugins.
This code from PluginHost::process() is the problem:
_process.audio_inputs = &_audioIn;
_process.audio_inputs_count = 1;
_process.audio_outputs = &_audioOut;
_process.audio_outputs_count = 1;
The text was updated successfully, but these errors were encountered: