13
0

ignore send output counts when computing effect of redirects on route stream count

git-svn-id: svn://localhost/ardour2/trunk@1429 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2007-02-07 12:45:53 +00:00
parent 27cd4034bd
commit b029d81a72

View File

@ -1147,9 +1147,16 @@ Route::_reset_plugin_counts (uint32_t* err_streams)
} else {
s->expect_inputs ((*prev)->output_streams());
}
}
redirect_max_outs = max ((*r)->output_streams (), redirect_max_outs);
} else {
/* don't pay any attention to send output configuration, since it doesn't
affect the route.
*/
redirect_max_outs = max ((*r)->output_streams (), redirect_max_outs);
}
}
/* we're done */