Update Lua scripts to use new APIs

This commit is contained in:
Robin Gareus 2020-09-20 00:59:31 +02:00
parent 89a0258c31
commit 2b21a571b9
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
2 changed files with 3 additions and 3 deletions

View file

@ -27,11 +27,11 @@ function dsp_runmap (bufs, in_map, out_map, n_samples, offset)
local ba = C.ByteVector () -- construct a byte vector
ba:add ({0x90, 64, 127}) -- add some data to the vector
-- send a message at cycle-start
mb:push_back (offset, ba:size (), ba:to_array());
mb:push_back (offset, Evoral.EventType.MIDI_EVENT, ba:size (), ba:to_array());
ba:clear ()
ba:add ({0x80, 64, 127})
mb:push_back (n_samples - 1 - offset, ba:size (), ba:to_array());
mb:push_back (n_samples - 1 - offset, Evoral.EventType.MIDI_EVENT, ba:size (), ba:to_array(), 0);
end
ARDOUR.DSP.process_map (bufs, n_out, in_map, out_map, n_samples, offset)
end