mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 07:06:23 +01:00
fix assert/crash if unknown processor's I/O mismatches
This can happen on OS X. Audio Units did not have a MIDI bypass. Ardour adds an implicit bypass and existing "unknown/missing" plugins after the instrument will see a different i/o config.
This commit is contained in:
parent
f2f9c2303a
commit
eb35ba1d95
1 changed files with 4 additions and 1 deletions
|
|
@ -103,8 +103,11 @@ UnknownProcessor::can_support_io_configuration (const ChanCount &in, ChanCount &
|
|||
out = in;
|
||||
#endif
|
||||
return true;
|
||||
} else {
|
||||
PBD::error << _("Using plugin-stub with mismatching i/o configuration for: ") << name() << endmsg;
|
||||
out = in;
|
||||
}
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue