From 62940482c29913124fc8f499994a345f76af17b5 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 27 Oct 2010 01:37:53 +0000 Subject: 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 --- src/engine/LV2Node.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/engine/LV2Node.cpp') 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))); } } -- cgit v1.2.1