fr810
September 15, 2022, 12:22pm
3
Here is also some sample code I wrote a while back on the correct way to forward the bus layout callbacks to a wrapped plug-in. Maybe this will help you:
Try this, it hosts an external AU in a VST plug-in but any other combination will also work:
#include "../JuceLibraryCode/JuceHeader.h"
class WrapperProcessor
: public AudioProcessor
{
public:
WrapperProcessor (AudioPluginInstance* processorToUse)
: AudioProcessor (getBusesPropertiesFromProcessor (processorToUse)),
plugin (processorToUse)
{}
//==============================================================================
const String getName() const …