summaryrefslogtreecommitdiffstats
path: root/src/engine/LV2Node.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-10-27 01:37:53 +0000
committerDavid Robillard <d@drobilla.net>2010-10-27 01:37:53 +0000
commit62940482c29913124fc8f499994a345f76af17b5 (patch)
treeee161b9abbed09fe174a68b2bc999b7836dfbf87 /src/engine/LV2Node.cpp
parent5177aa485f28e40e087042c2b7292fb9a94e7a3c (diff)
downloadingen-62940482c29913124fc8f499994a345f76af17b5.tar.gz
ingen-62940482c29913124fc8f499994a345f76af17b5.tar.bz2
ingen-62940482c29913124fc8f499994a345f76af17b5.zip
Update for new Atom extension.
Add RDF read (parse) and RDF write (serialise) plugins. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2649 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/LV2Node.cpp')
-rw-r--r--src/engine/LV2Node.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/LV2Node.cpp b/src/engine/LV2Node.cpp
index e6593d13..8291adf2 100644
--- a/src/engine/LV2Node.cpp
+++ b/src/engine/LV2Node.cpp
@@ -203,7 +203,7 @@ LV2Node::instantiate(BufferFactory& bufs)
"http://lv2plug.in/ns/lv2core#portProperty");
SLV2Value supports_pred = slv2_value_new_uri(info->lv2_world(),
- "http://lv2plug.in/ns/ext/atom-port#supports");
+ "http://lv2plug.in/ns/ext/atom#supports");
//SLV2Value as_large_as_pred = slv2_value_new_uri(info->lv2_world(),
// "http://lv2plug.in/ns/ext/resize-port#asLargeAs");
@@ -307,12 +307,12 @@ LV2Node::instantiate(BufferFactory& bufs)
}
}
- // Set aport:supports properties
+ // Set atom:supports properties
SLV2Values types = slv2_port_get_value(plug, id, supports_pred);
for (uint32_t i = 0; i < slv2_values_size(types); ++i) {
SLV2Value type = slv2_values_get_at(types, i);
if (slv2_value_is_uri(type)) {
- port->add_property(uris.aport_supports, Raul::URI(slv2_value_as_uri(type)));
+ port->add_property(uris.atom_supports, Raul::URI(slv2_value_as_uri(type)));
}
}