mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 23:25:43 +01:00
fix AU bus sidechaining
This commit is contained in:
parent
53b51ee536
commit
b68c28986c
1 changed files with 4 additions and 3 deletions
|
|
@ -1267,9 +1267,10 @@ AUPlugin::can_support_io_configuration (const ChanCount& in, ChanCount& out, Cha
|
|||
continue;
|
||||
}
|
||||
for (uint32_t i = 1; i < input_elements; ++i) {
|
||||
for (uint32_t j = 0; j < bus_inputs[i]; ++j) {
|
||||
io_configs.push_back (pair<int,int> (possible_in + j, possible_out));
|
||||
}
|
||||
// can't use up-to bus_inputs[]
|
||||
// waves' SC-C6(s) for example fails to configure with only 1 input
|
||||
// on the 2nd bus.
|
||||
io_configs.push_back (pair<int,int> (possible_in + bus_inputs[i], possible_out));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue