We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproducers: https://github.com/izzyreal/JUCE/tree/develop-no-mono-au (see AUv3Synth example) https://github.com/izzyreal/juce-cmake-template/tree/au-no-mono
Exact same issue here: https://forum.juce.com/t/au-with-1xstereo-4xmono-output-buses/48557
Note that it's easy to create the desired layout in the Xcode AUv3 template by doing this:
- (void)setupAudioBuses { NSMutableArray<AUAudioUnitBus *> *busses = [NSMutableArray array]; AVAudioFormat *stereoFormat = [[AVAudioFormat alloc] initStandardFormatWithSampleRate:44100 channels:2]; _outputBus = [[AUAudioUnitBus alloc] initWithFormat:stereoFormat error:nil]; _outputBus.maximumChannelCount = 2; _outputBus.supportedChannelCounts = @[@2]; [busses addObject:_outputBus]; for (int i = 0; i < 8; i++) { AVAudioFormat *monoFormat = [[AVAudioFormat alloc] initStandardFormatWithSampleRate:44100 channels:1]; AUAudioUnitBus *bus = [[AUAudioUnitBus alloc] initWithFormat:monoFormat error:nil]; bus.enabled = NO; bus.maximumChannelCount = 1; bus.supportedChannelCounts = @[@1]; [busses addObject:bus]; } _outputBusArray = [[AUAudioUnitBusArray alloc] initWithAudioUnit:self busType:AUAudioUnitBusTypeOutput busses:busses]; }
AU or AUv3 with 1x stereo out with n mono outs
macOS
14.7.3
Arm64/aarch64
AU, AUv3
Logic
develop
The bug is present on the develop branch
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Detailed steps on how to reproduce the bug
Reproducers:
https://github.com/izzyreal/JUCE/tree/develop-no-mono-au (see AUv3Synth example)
https://github.com/izzyreal/juce-cmake-template/tree/au-no-mono
Exact same issue here: https://forum.juce.com/t/au-with-1xstereo-4xmono-output-buses/48557
Note that it's easy to create the desired layout in the Xcode AUv3 template by doing this:
What is the expected behaviour?
AU or AUv3 with 1x stereo out with n mono outs
Operating systems
macOS
What versions of the operating systems?
14.7.3
Architectures
Arm64/aarch64
Stacktrace
Plug-in formats (if applicable)
AU, AUv3
Plug-in host applications (DAWs) (if applicable)
Logic
Testing on the
develop
branchThe bug is present on the
develop
branchCode of Conduct
The text was updated successfully, but these errors were encountered: