| 57 | |
| 58 | #ifndef JucePlugin_PreferredChannelConfigurations |
| 59 | bool OdinAudioProcessor::isBusesLayoutSupported(const BusesLayout &layouts) const { |
| 60 | |
| 61 | //only support stereo output |
| 62 | if (layouts.getMainOutputChannelSet() != AudioChannelSet::stereo()) |
| 63 | return false; |
| 64 | |
| 65 | return true; |
| 66 | } |
| 67 | #endif |
| 68 | |
| 69 | //============================================================================== |
nothing calls this directly
no outgoing calls
no test coverage detected