diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2017-01-26 03:34:02 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2017-01-26 07:29:42 +0100 |
commit | 6a584fdae9fedad214538e81c8347dd75d64febc (patch) | |
tree | 0e40f0cd9073d131e58283babb5af45e2fe03116 /applause.lua | |
parent | 9c2076f6b79476ef404e3de5ba1cd5c4affe2300 (diff) | |
download | applause2-6a584fdae9fedad214538e81c8347dd75d64febc.tar.gz |
added DSSI support
* The LADSPA module has been extended to support DSSI plugins as well.
If DSSI support is detected, the first input stream is considered a MIDI
event stream.
* The MIDI event handling must be updated to allow streams of MIDI messages
for this to be useful.
* ladspa.lua has been subsequently renamed to dssi.lua
Diffstat (limited to 'applause.lua')
-rw-r--r-- | applause.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applause.lua b/applause.lua index 2b86280..91507fa 100644 --- a/applause.lua +++ b/applause.lua @@ -2333,4 +2333,4 @@ Client.__gc = Client.kill -- Additional modules are loaded with dofile(), -- so they react to reload() -- -dofile "ladspa.lua" +dofile "dssi.lua" |