mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 23:46:20 +01:00
AU: don't consider in-place if there are no inputs
This commit is contained in:
parent
f84374730a
commit
8dc0c84ba4
1 changed files with 1 additions and 1 deletions
|
|
@ -1602,7 +1602,7 @@ AUPlugin::connect_and_run (BufferSet& bufs,
|
|||
bool inplace = true; // TODO check plugin-insert in-place ?
|
||||
ChanMapping::Mappings inmap (in_map.mappings ());
|
||||
ChanMapping::Mappings outmap (out_map.mappings ());
|
||||
if (outmap[DataType::AUDIO].size () == 0) {
|
||||
if (outmap[DataType::AUDIO].size () == 0 || inmap[DataType::AUDIO].size() == 0) {
|
||||
inplace = false;
|
||||
}
|
||||
if (inmap[DataType::AUDIO].size() > 0 && inmap != outmap) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue