diff options
author | David Robillard <d@drobilla.net> | 2014-11-02 07:07:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-11-02 07:07:11 +0000 |
commit | ea1229258e449fb11708b1f97a528ab56264bbbd (patch) | |
tree | 1c150b94b41730eaaa7cfd7e4c8e65c95ff5dce6 /plugins/eg-amp.lv2 | |
parent | f2619d90d01fe1a2a9888a6fdf533488645aa7e4 (diff) | |
download | lv2-ea1229258e449fb11708b1f97a528ab56264bbbd.tar.xz |
Describe unit of gain port.
Diffstat (limited to 'plugins/eg-amp.lv2')
-rw-r--r-- | plugins/eg-amp.lv2/amp.ttl | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/plugins/eg-amp.lv2/amp.ttl b/plugins/eg-amp.lv2/amp.ttl index f4a87f2..865d0f6 100644 --- a/plugins/eg-amp.lv2/amp.ttl +++ b/plugins/eg-amp.lv2/amp.ttl @@ -2,10 +2,11 @@ # `manifest.ttl`. This is done so the host only needs to scan the relatively # small `manifest.ttl` files to quickly discover all plugins. -@prefix doap: <http://usefulinc.com/ns/doap#> . -@prefix lv2: <http://lv2plug.in/ns/lv2core#> . -@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . -@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix doap: <http://usefulinc.com/ns/doap#> . +@prefix lv2: <http://lv2plug.in/ns/lv2core#> . +@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . +@prefix units: <http://lv2plug.in/ns/extensions/units#> . # First the type of the plugin is described. All plugins must explicitly list # `lv2:Plugin` as a type. A more specific type should also be given, where @@ -58,6 +59,9 @@ lv2:default 0.0 ; lv2:minimum -90.0 ; lv2:maximum 24.0 ; +# Ports can describe units and control detents to allow better UI generation +# and host automation. + units:unit units:db ; lv2:scalePoint [ rdfs:label "+5" ; rdf:value 5.0 |