aboutsummaryrefslogtreecommitdiffstats
path: root/ext/atom.lv2
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-06 17:44:39 +0000
committerDavid Robillard <d@drobilla.net>2011-11-06 17:44:39 +0000
commita0320122b94a8c92cd780f8d3c9da7260ec400e6 (patch)
tree9bba3c0dda4b08f491392416630b63377583a328 /ext/atom.lv2
parent09e404f50bcf96c8942d73b5b68baa2f0d6f3d02 (diff)
downloadlv2-a0320122b94a8c92cd780f8d3c9da7260ec400e6.tar.xz
Typedef void* callback_data parameter.
Diffstat (limited to 'ext/atom.lv2')
-rw-r--r--ext/atom.lv2/atom.h2
-rw-r--r--ext/atom.lv2/atom.ttl22
-rw-r--r--ext/atom.lv2/manifest.ttl2
3 files changed, 14 insertions, 12 deletions
diff --git a/ext/atom.lv2/atom.h b/ext/atom.lv2/atom.h
index 4f803ba..ed5ddd8 100644
--- a/ext/atom.lv2/atom.h
+++ b/ext/atom.lv2/atom.h
@@ -208,6 +208,6 @@ typedef struct {
*/
uint32_t size;
-} LV2_Atom_Event_Buffer;
+} LV2_Atom_Buffer;
#endif /* LV2_ATOM_H */
diff --git a/ext/atom.lv2/atom.ttl b/ext/atom.lv2/atom.ttl
index 139155f..d999518 100644
--- a/ext/atom.lv2/atom.ttl
+++ b/ext/atom.lv2/atom.ttl
@@ -25,9 +25,10 @@
a lv2:Specification ;
doap:name "LV2 Atom" ;
doap:shortdesc "A generic value container and several data types." ;
+ rdfs:seeAlso <atom-buffer.h> ;
doap:release [
- doap:revision "0.1" ;
- doap:created "2011-04-05"
+ doap:revision "0.2" ;
+ doap:created "2011-11-05"
] ;
doap:maintainer [
a foaf:Person ;
@@ -66,15 +67,16 @@ to a single Atom: <a href="#ValuePort">ValuePort</a> and <a href="#MessagePort"
>MessagePort</a>, which both have the same buffer format but different
semantics (with respect to how the run() callback interprets the Atom).</p>
-<p>This extension requires the host to support the <a
-href="http://lv2plug.in/ns/ext/uri-map">LV2 URI Map</a> extension.</p>
+<p>Implementing this extension requires a facility for mapping URIs to
+integers, such as the <a href="http://lv2plug.in/ns/ext/urid">LV2 URID</a>
+extension.</p>
""" .
atom:Atom
a rdfs:Class ;
rdfs:label "Atom" ;
lv2:documentation """
-<p>Abstract base class for all atoms. An LV2_Atom has a 16-bit
+<p>Abstract base class for all atoms. An LV2_Atom has a 32-bit
<code>type</code> and <code>size</code> followed by a <code>body</code> of
<code>size</code> bytes.</p>
@@ -407,11 +409,11 @@ atom:EventPort
rdfs:label "Event port" ;
rdfs:subClassOf lv2:Port ;
lv2:documentation """
-Ports of this type will be connected to an LV2_Atom_Event_Buffer. These ports
-contain a sequence of atom:Event (i.e. time stamped atoms). These ports are
-used to send and receive atoms in the audio context
-(i.e. LV2_Descriptor::run()), and are intended as a simpler, more generic, and
-atom compatible successor to <a
+A port used for communicating time-stamped atoms in the audio context. Ports
+of this type are connected to an LV2_Atom_Buffer, which contains a flat
+time-stamped sequence of <a href="#Event">Events</a>.
+
+This port type is intended as a simpler and atom compatible successor to <a
href="http://lv2plug.in/ns/ext/event#EventPort">ev:EventPort</a>.
""" .
diff --git a/ext/atom.lv2/manifest.ttl b/ext/atom.lv2/manifest.ttl
index d8488b1..adb10e5 100644
--- a/ext/atom.lv2/manifest.ttl
+++ b/ext/atom.lv2/manifest.ttl
@@ -4,6 +4,6 @@
<http://lv2plug.in/ns/ext/atom>
a lv2:Specification ;
lv2:minorVersion 0 ;
- lv2:microVersion 1 ;
+ lv2:microVersion 2 ;
rdfs:seeAlso <atom.ttl> .