From 9fedb74b36e9788825d1bd20e21ab3724f9bc0b4 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 13 Apr 2016 20:54:42 +0200 Subject: [PATCH] strict i/o sets enforces output port count. --- libs/ardour/route.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 5c34f42b7f..429ee3155f 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -4757,6 +4757,9 @@ Route::input_port_count_changing (ChanCount to) bool Route::output_port_count_changing (ChanCount to) { + if (_strict_io && !_in_configure_processors) { + return true; + } for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) { if (processor_out_streams.get(*t) > to.get(*t)) { return true; -- 2.30.2