# VST3 - Multi channel single bus not working

**URL:** https://forum.juce.com/t/vst3-multi-channel-single-bus-not-working/44675
**Category:** Audio Plugins
**Created:** [February 26, 2021, 4:35pm UTC](https://forum.juce.com/t/vst3-multi-channel-single-bus-not-working/44675 "2021-02-26T16:35:12Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![bobthedog](https://avatars.discourse-cdn.com/v4/letter/b/977dab/32.png) [@bobthedog](https://forum.juce.com/u/bobthedog)
#### Post date: [February 26, 2021, 4:35pm UTC](https://forum.juce.com/t/vst3-multi-channel-single-bus-not-working/44675/1 "2021-02-26T16:35:12Z")

</div>

Hi Guys,

I am having some issues with hosts seeing multi channel buses in VST3.

To Replicate:

Create new juce project with the sampler example.

Change

```auto
  bool isBusesLayoutSupported (const BusesLayout& layouts) const override
    {
        return layouts.getMainOutputChannelSet() == AudioChannelSet::mono()
            || layouts.getMainOutputChannelSet() == AudioChannelSet::stereo()
            || layouts.getMainOutputChannelSet() == AudioChannelSet::create5point1();
    }

```

Generate AU, VST and VST3.

The AU and VST3 work as expected, the VST3 only provides a single stereo out.

Tested in Logic for the AU, Cubase 10.5 and Ableton for the VST and VST3.

Interestingly AudioPluginHost works fine with the VST3.

Has anyone any ideas on this?
