commit 90e9c62163dea22234d0af1bf183ce0f2cf03091 parent 1c173a57a72351abb3bf6e1f55079679ef9c35db Author: Ivan Melnikov <[email protected]> Date: Mon, 16 Jan 2023 23:12:46 +0400 LV2: Support stereo mode only (#300) LV2 does not support setting number of channels dynamically, so, to avoid confusing hosts with 36-channels plugin and to preserve compatibility with older LV2 plugins, the LV2 plugin now reports supporting stereo mode only. Refs. https://github.com/jatinchowdhury18/AnalogTapeModel/issues/283 Diffstat:
M | Plugin/Source/PluginProcessor.cpp | | | 16 | ++++++++++++---- |
1 file changed, 12 insertions(+), 4 deletions(-)
diff --git a/Plugin/Source/PluginProcessor.cpp b/Plugin/Source/PluginProcessor.cpp @@ -134,10 +134,18 @@ float ChowtapeModelAudioProcessor::calcLatencySamples() const noexcept bool ChowtapeModelAudioProcessor::isBusesLayoutSupported (const BusesLayout& layouts) const { - return ((! layouts.getMainInputChannelSet().isDiscreteLayout()) - && (! layouts.getMainOutputChannelSet().isDiscreteLayout()) - && (layouts.getMainInputChannelSet() == layouts.getMainOutputChannelSet()) - && (! layouts.getMainInputChannelSet().isDisabled())); + if (wrapperType == juce::AudioProcessor::WrapperType::wrapperType_LV2) + { + return ((layouts.getMainOutputChannelSet() == AudioChannelSet::stereo()) + && (layouts.getMainInputChannelSet() == AudioChannelSet::stereo())); + } + else + { + return ((! layouts.getMainInputChannelSet().isDiscreteLayout()) + && (! layouts.getMainOutputChannelSet().isDiscreteLayout()) + && (layouts.getMainInputChannelSet() == layouts.getMainOutputChannelSet()) + && (! layouts.getMainInputChannelSet().isDisabled())); + } } void ChowtapeModelAudioProcessor::processBlockBypassed (AudioBuffer<float>& buffer, MidiBuffer&)