summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-15 23:05:51 +0200
committerRobin Gareus <robin@gareus.org>2016-04-15 23:05:51 +0200
commiteed0a7965c1934b534f6a294ef936277801d8a14 (patch)
treec1fba295d4c12f390f83053de8fb2390edd9a201
parenta27e0f0d653f7397f27d488d2f128157c50c7048 (diff)
example multi-channel synth for testing (revert this)
-rw-r--r--scripts/synth1.lua7
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/synth1.lua b/scripts/synth1.lua
index 046d27404b..264d6dcb99 100644
--- a/scripts/synth1.lua
+++ b/scripts/synth1.lua
@@ -11,8 +11,11 @@ ardour {
function dsp_ioconfig ()
return
{
- { audio_in = 0, audio_out = -1}, -- any number of channels
- -- { audio_in = 0, audio_out = 4}, -- values > 0, precisely N channels
+ -- { audio_in = 0, audio_out = -1}, -- any number of channels
+ -- { audio_in = 0, audio_out = 1}, -- values > 0, precisely N channels
+ { audio_in = 0, audio_out = 2}, -- values > 0, precisely N channels
+ { audio_in = 0, audio_out = 4}, -- values > 0, precisely N channels
+ { audio_in = 0, audio_out = 8}, -- values > 0, precisely N channels
-- { audio_in = 0, audio_out = -6}, -- values < -2, up to -N channels, here 1,..,6
}
end