mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 11:06:32 +01:00
Modify route _processor list set up so that the logic for placing `invisible' processors (e.g. internal returns etc.) is in one place. Add option to get pre-fade listen from before or after pre-fade processors (#3781).
git-svn-id: svn://localhost/ardour2/branches/3.0@8903 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
c77d116703
commit
13232d03f3
13 changed files with 326 additions and 213 deletions
|
|
@ -275,7 +275,7 @@ MonitorProcessor::run (BufferSet& bufs, framepos_t /*start_frame*/, framepos_t /
|
|||
target_gain = 0.0;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (target_gain != _channels[chn]->current_gain || target_gain != 1.0f) {
|
||||
|
||||
Amp::apply_gain (*b, nframes, _channels[chn]->current_gain, target_gain);
|
||||
|
|
@ -334,7 +334,8 @@ MonitorProcessor::configure_io (ChanCount in, ChanCount out)
|
|||
bool
|
||||
MonitorProcessor::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
|
||||
{
|
||||
return in == out;
|
||||
out = in;
|
||||
return true;
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue