summaryrefslogtreecommitdiff
path: root/libs/ardour/luaproc.cc
diff options
context:
space:
mode:
authorJulien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>2016-08-03 23:28:09 +0200
committerJulien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>2016-08-06 19:38:09 +0200
commit0f64e5ce8473006107841c4b2aa18be9f099d784 (patch)
treeb9fecf9aa214906dc2d23bc6705cccbb3934c1f7 /libs/ardour/luaproc.cc
parent93aa03ee2a54a02ef8df74cdf16539ebba827cf2 (diff)
Remove ad-hoc handling of possible_in == 0
Just make the code responsible for possible_in > 0 also handle possible_in == 0 since it nearly does the same thing. The only difference is that the possible_in == 0 case didn't check at all for audio_in, essentially acting as if possible_in was audio_in. There is thus a small POLICY CHANGE, but the selected configuration will stay the same unless a better matching configuration is available.
Diffstat (limited to 'libs/ardour/luaproc.cc')
-rw-r--r--libs/ardour/luaproc.cc21
1 files changed, 2 insertions, 19 deletions
diff --git a/libs/ardour/luaproc.cc b/libs/ardour/luaproc.cc
index f2db7848c8..8f370ebfad 100644
--- a/libs/ardour/luaproc.cc
+++ b/libs/ardour/luaproc.cc
@@ -462,23 +462,6 @@ LuaProc::can_support_io_configuration (const ChanCount& in, ChanCount& out, Chan
continue;
}
- if (possible_in == 0) {
- /* no inputs, generators & instruments */
- if (possible_out == -1 || possible_out == -2) {
- /* any output configuration possible
- * out == -2 is invalid, interpreted as out == -1 */
- FOUNDCFG (preferred_out);
- ANYTHINGGOES;
- } else if (possible_out < -2) {
- /* variable number of outputs up to -N, */
- FOUNDCFG (min (-possible_out, preferred_out));
- UPTO (-possible_out);
- } else {
- /* exact number of outputs */
- FOUNDCFG (possible_out);
- }
- }
-
if (possible_in == -1 || possible_in == -2) {
/* wildcard for input */
if (possible_out == possible_in) {
@@ -501,10 +484,10 @@ LuaProc::can_support_io_configuration (const ChanCount& in, ChanCount& out, Chan
}
}
- if (possible_in < -2 || possible_in > 0) {
+ if (possible_in < -2 || possible_in >= 0) {
/* specified number, exact or up to */
int desired_in;
- if (possible_in > 0) {
+ if (possible_in >= 0) {
/* configuration can only match possible_in */
desired_in = possible_in;
} else {