From: Robin Gareus Date: Sat, 27 Aug 2016 22:02:16 +0000 (+0200) Subject: fix typo in notch example script X-Git-Tag: 5.2~2 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;ds=inline;h=90a5fbdb27f2e69741224ac0d5acaff7fcdd022c;p=ardour.git fix typo in notch example script --- diff --git a/scripts/_notch_bank.lua b/scripts/_notch_bank.lua index 68c1942c5a..03a8dbf22f 100644 --- a/scripts/_notch_bank.lua +++ b/scripts/_notch_bank.lua @@ -110,7 +110,7 @@ function dsp_run (ins, outs, n_samples) for c = 1, chn do -- when not processing in-place, copy the data from input to output first if not ins[c]:sameinstance (outs[c]) then - ARDOUR.DSP.copy_vector (outs[c], outs[c], n_samples) + ARDOUR.DSP.copy_vector (outs[c], ins[c], n_samples) end -- run all stages, in-place on the output buffer