summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-12-06 22:34:07 +0100
committerRobin Gareus <robin@gareus.org>2016-12-06 22:56:04 +0100
commit2d37392f1a23d415d022edec4c41c244b584031d (patch)
tree46e4e509db2b8a7656832a02d8391bcc5c6c945f
parent6e2dfe65bfd85501e7daea25569512bf51711566 (diff)
a-fluid synth: label Reverb & Chorus sends.
Also globally enable Reverb + Chorus FX (so that sends work by default)
-rw-r--r--libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc2
-rw-r--r--libs/plugins/a-fluidsynth.lv2/a-fluidsynth.ttl.in4
2 files changed, 4 insertions, 2 deletions
diff --git a/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc b/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc
index bea0bc78d2..e70b15286c 100644
--- a/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc
+++ b/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.cc
@@ -753,6 +753,8 @@ mn_file (LV2_Handle instance)
pf (" <Control Type=\"7bit\" Number=\"42\" Name=\"Pan (Fine)\"/>\n");
pf (" <Control Type=\"7bit\" Number=\"64\" Name=\"Damper Pedal (Sustain)\"/>\n");
pf (" <Control Type=\"7bit\" Number=\"66\" Name=\"Sostenuto\"/>\n");
+ pf (" <Control Type=\"7bit\" Number=\"91\" Name=\"Reverb\"/>\n");
+ pf (" <Control Type=\"7bit\" Number=\"93\" Name=\"Chorus\"/>\n");
pf (" </ControlNameList>\n");
pf (
diff --git a/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.ttl.in b/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.ttl.in
index ca9b3ca39a..21ab8387c1 100644
--- a/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.ttl.in
+++ b/libs/plugins/a-fluidsynth.lv2/a-fluidsynth.ttl.in
@@ -79,7 +79,7 @@
lv2:index 5 ;
lv2:symbol "rev_enable" ;
lv2:name "Reverb Enable" ;
- lv2:default 0 ;
+ lv2:default 1 ;
lv2:minimum 0 ;
lv2:maximum 1 ;
lv2:portProperty lv2:integer, lv2:toggled;
@@ -120,7 +120,7 @@
lv2:index 10 ;
lv2:symbol "chorus_enable" ;
lv2:name "Chorus Enable" ;
- lv2:default 0 ;
+ lv2:default 1 ;
lv2:minimum 0 ;
lv2:maximum 1 ;
lv2:portProperty lv2:integer, lv2:toggled;