mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Remove dsp_has_midi_*() in favor of dsp_ioconfig()
_has_midi_*put members of LuaProc will be set according to the actual configuration chosen, for configure_io() and run() to use.
This commit is contained in:
parent
82e1ef5fb0
commit
66470b96b7
6 changed files with 17 additions and 50 deletions
|
|
@ -13,12 +13,9 @@ local evlen = 3
|
|||
local hpadding, vpadding = 4, 2
|
||||
|
||||
function dsp_ioconfig ()
|
||||
return { { audio_in = -1, audio_out = -1}, }
|
||||
return { { midi_in = 1, midi_out = 1, audio_in = -1, audio_out = -1}, }
|
||||
end
|
||||
|
||||
function dsp_has_midi_input () return true end
|
||||
function dsp_has_midi_output () return true end
|
||||
|
||||
function dsp_params ()
|
||||
return
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue