From 8e778ac86e2b1773b21e56d601c34d56aa51e93b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 13 Apr 2012 04:34:00 +0000 Subject: Add some parameters from the old draft mixing_control extension. --- lv2/lv2plug.in/ns/ext/parameters/parameters.ttl | 36 +++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'lv2/lv2plug.in/ns/ext/parameters') diff --git a/lv2/lv2plug.in/ns/ext/parameters/parameters.ttl b/lv2/lv2plug.in/ns/ext/parameters/parameters.ttl index fe450ba..d42c2f9 100644 --- a/lv2/lv2plug.in/ns/ext/parameters/parameters.ttl +++ b/lv2/lv2plug.in/ns/ext/parameters/parameters.ttl @@ -99,6 +99,42 @@ param:waveform a lv2:Parameter ; rdfs:label "Waveform" . +param:gain + a lv2:Parameter ; + rdfs:label "Gain" ; + rdfs:comment "A factor which controls an output level." . + +param:wetDryRatio + a lv2:Parameter ; + rdfs:label "Wet/Dry Ratio" ; + lv2:documentation """ +

The ratio between processed and bypass components in output signal. The dry +and wet percentages can be calculated from the following equations:

+ +
+    dry = (wetDryRatio.maximum - wetDryRatio.value) / wetDryRatio.maximum
+    wet = wetDryRatio.value / wetDryRatio.maximum
+
+ +

Typically, maximum value of 1 or 100 and minimum value of 0 should be +used.

+""" . + +param:wetLevel + a lv2:Parameter ; + rdfs:label "Wet Level" ; + rdfs:comment "The level of the processed component of a signal." . + +param:dryLevel + a lv2:Parameter ; + rdfs:label "Dry Level" ; + rdfs:comment "The level of the unprocessed component of a signal." . + +param:bypass + a lv2:Parameter ; + rdfs:label "Bypass" ; + rdfs:comment "A boolean parameter that disabled processing if true." . + param:EnvelopeControls a rdfs:Class ; rdfs:subClassOf param:ControlGroup ; -- cgit v1.2.1