mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 15:54:57 +01:00
fix typo in notch example script
This commit is contained in:
parent
bddcb9eb1f
commit
90a5fbdb27
1 changed files with 1 additions and 1 deletions
|
|
@ -110,7 +110,7 @@ function dsp_run (ins, outs, n_samples)
|
||||||
for c = 1, chn do
|
for c = 1, chn do
|
||||||
-- when not processing in-place, copy the data from input to output first
|
-- when not processing in-place, copy the data from input to output first
|
||||||
if not ins[c]:sameinstance (outs[c]) then
|
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
|
end
|
||||||
|
|
||||||
-- run all stages, in-place on the output buffer
|
-- run all stages, in-place on the output buffer
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue