aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/urid/urid.ttl
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-22 20:38:01 +0200
committerDavid Robillard <d@drobilla.net>2018-09-22 20:38:58 +0200
commit4db67120efca2d4c200d2e1ba5cf3d7b97cab97e (patch)
tree793630dd2a17b78d805dc4bc5cd50fbdd0ace3bd /lv2/urid/urid.ttl
parent160ecb9601c9687a1093e124e936dcbd78aef43c (diff)
downloadlv2-4db67120efca2d4c200d2e1ba5cf3d7b97cab97e.tar.xz
Install standard headers to simpler include paths
Diffstat (limited to 'lv2/urid/urid.ttl')
-rw-r--r--lv2/urid/urid.ttl39
1 files changed, 39 insertions, 0 deletions
diff --git a/lv2/urid/urid.ttl b/lv2/urid/urid.ttl
new file mode 100644
index 0000000..29b196a
--- /dev/null
+++ b/lv2/urid/urid.ttl
@@ -0,0 +1,39 @@
+@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix urid: <http://lv2plug.in/ns/ext/urid#> .
+
+<http://lv2plug.in/ns/ext/urid>
+ a lv2:Specification ;
+ rdfs:seeAlso <urid.h> ,
+ <lv2-urid.doap.ttl> ;
+ lv2:documentation """
+<p>This extension defines a simple mechanism for plugins to map URIs to and
+from integers, usually for performance reasons (e.g. processing events typed by
+URIs in real time). Typically, plugins map URIs to integers for things they
+"understand" at instantiation time, and store those values for use in the audio
+thread without doing any string comparison. This allows for the extensibility
+of RDF but with the performance of integers.</p>
+
+<p>This extension is intended as an improved and simplified replacement for the
+<a href="../uri-map/uri-map.html">uri-map</a> extension, since the <q>map</q>
+context parameter has been found problematic. This extension is functionally
+equivalent to the uri-map extension with a NULL context. New implementations
+are encouraged to use this extension for URI mapping.</p>
+""" .
+
+urid:map
+ a lv2:Feature ;
+ lv2:documentation """
+<p>A feature which is used to map URIs to integers. To support this feature,
+the host must pass an LV2_Feature to LV2_Descriptor::instantiate() with URI
+LV2_URID__map and data pointed to an instance of LV2_URID_Map.</p>
+""" .
+
+urid:unmap
+ a lv2:Feature ;
+ lv2:documentation """
+<p>A feature which is used to unmap URIs previously mapped to integers by
+urid:map. To support this feature, the host must pass an LV2_Feature to
+LV2_Descriptor::instantiate() with URI LV2_URID__unmap and data pointed to
+an instance of LV2_URID_Unmap.</p>
+""" .