amend d9de72215 - bypass replicated instances w/sidechain inputs

This commit is contained in:
Robin Gareus 2016-07-05 15:37:59 +02:00
parent a16c0c445a
commit 54d8def68c

View File

@ -1264,8 +1264,11 @@ PluginInsert::no_sc_input_map () const
ChanMapping m (i->second);
const ChanMapping::Mappings& mp ((*i).second.mappings());
for (ChanMapping::Mappings::const_iterator tm = mp.begin(); tm != mp.end(); ++tm) {
uint32_t ins = natural_input_streams().get(tm->first) - _cached_sidechain_pins.get(tm->first);
for (ChanMapping::TypeMapping::const_iterator i = tm->second.begin(); i != tm->second.end(); ++i) {
rv.set (tm->first, i->first + pc * (natural_input_streams().get(tm->first) - _cached_sidechain_pins.get(tm->first)), i->second);
if (i->second < ins) {
rv.set (tm->first, i->first + pc * ins, i->second);
}
}
}
}