Amend 0c7895298d, fix parameter order #8388

Plugin parameters may only be added, but no re-ordered since
Ardour uses numeric indices for automation.
This commit is contained in:
Robin Gareus 2020-08-30 19:14:44 +02:00
parent dc553c49b4
commit 7cdefbe8e7
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 17 additions and 17 deletions

View File

@ -53,13 +53,13 @@ typedef enum {
ADELAY_SYNC,
ADELAY_TIME,
ADELAY_DIVISOR,
ADELAY_DOTTED,
ADELAY_WETDRY,
ADELAY_FEEDBACK,
ADELAY_LPF,
ADELAY_GAIN,
ADELAY_DELAYTIME,
ADELAY_ENABLE,
ADELAY_DOTTED,
} PortIndex;

View File

@ -101,16 +101,6 @@
[
a lv2:InputPort, lv2:ControlPort ;
lv2:index 7 ;
lv2:name "Dotted" ;
lv2:symbol "dot" ;
lv2:default 0 ;
lv2:minimum 0 ;
lv2:maximum 1 ;
lv2:portProperty lv2:integer, lv2:toggled ;
] ,
[
a lv2:InputPort, lv2:ControlPort ;
lv2:index 8 ;
lv2:name "Dry/Wet" ;
lv2:symbol "drywet" ;
lv2:default 50.000000 ;
@ -120,7 +110,7 @@
] ,
[
a lv2:InputPort, lv2:ControlPort ;
lv2:index 9 ;
lv2:index 8 ;
lv2:name "Feedback" ;
lv2:symbol "feedback" ;
lv2:default 20.000000 ;
@ -130,7 +120,7 @@
] ,
[
a lv2:InputPort, lv2:ControlPort ;
lv2:index 10 ;
lv2:index 9 ;
lv2:name "LPF" ;
lv2:symbol "lpf" ;
lv2:default 6000.000000 ;
@ -141,7 +131,7 @@
] ,
[
a lv2:InputPort, lv2:ControlPort ;
lv2:index 11 ;
lv2:index 10 ;
lv2:name "Output Gain" ;
lv2:symbol "gain" ;
lv2:default 0.000000 ;
@ -151,7 +141,7 @@
] ,
[
a lv2:OutputPort, lv2:ControlPort ;
lv2:index 12 ;
lv2:index 11 ;
lv2:name "Delaytime" ;
lv2:symbol "delaytime" ;
lv2:default 0.000000 ;
@ -161,7 +151,7 @@
] ,
[
a lv2:InputPort, lv2:ControlPort ;
lv2:index 13 ;
lv2:index 12 ;
lv2:name "Enable" ;
lv2:symbol "enable" ;
lv2:default 1 ;
@ -169,6 +159,16 @@
lv2:maximum 1 ;
lv2:portProperty lv2:integer, lv2:toggled ;
lv2:designation lv2:enabled;
] ,
[
a lv2:InputPort, lv2:ControlPort ;
lv2:index 13 ;
lv2:name "Dotted" ;
lv2:symbol "dot" ;
lv2:default 0 ;
lv2:minimum 0 ;
lv2:maximum 1 ;
lv2:portProperty lv2:integer, lv2:toggled ;
] ;
rdfs:comment """
@ -180,4 +180,4 @@ A simple delay plugin
doap:maintainer <http://ardour.org/credits.html> ;
lv2:microVersion 0 ;
lv2:minorVersion 3 .
lv2:minorVersion 4 .