free-audio / clap-wrapper

Wrappers for using CLAP in other plugin environments
MIT License
124 stars 20 forks source link

Implement SingleComponentEffect::getBusInfo and fix Ardour #285

Closed baconpaul closed 3 months ago

baconpaul commented 3 months ago

Ardour uses getBusInfo to set up busses even though later we call setBusInfo, and so as a result didn't recieve the kDefaultActive flag we set when we setup processing.

This meant that Ardour would not activate auxilliary busses in multi-out effects so our process loop would find an invalid configuration and not call the clap.

Defacto this meant "no sound in shortcircuit xt in the wrapper in ardour". This imsplementation fixes the issue.