From 3d89115a67a9c947a28539ffdd2399808a53279b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 16 Nov 2009 00:30:35 +0000 Subject: Rework objects extension to have "value ports" and "message ports". Make audio and control buffers in ingen actually object buffers (towards interop). Overhaul the hell out of ingen buffer and mixing stuff. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2266 a436a847-0d15-0410-975c-d299462d15a1 --- src/shared/LV2URIMap.cpp | 1 + src/shared/LV2URIMap.hpp | 1 + 2 files changed, 2 insertions(+) (limited to 'src/shared') diff --git a/src/shared/LV2URIMap.cpp b/src/shared/LV2URIMap.cpp index 65e3aa30..e401f6cb 100644 --- a/src/shared/LV2URIMap.cpp +++ b/src/shared/LV2URIMap.cpp @@ -35,6 +35,7 @@ LV2URIMap::LV2URIMap() , object_class_string(uri_to_id(NULL, LV2_OBJECT_URI "#String")) , object_class_int32(uri_to_id(NULL, LV2_OBJECT_URI "#Int32")) , object_class_float32(uri_to_id(NULL, LV2_OBJECT_URI "#Float32")) + , object_class_vector(uri_to_id(NULL, LV2_OBJECT_URI "#Vector")) , ui_format_events(uri_to_id(NULL, "http://lv2plug.in/ns/extensions/ui#Events")) , midi_event(uri_to_id(NULL, "http://lv2plug.in/ns/ext/midi#MidiEvent")) , string_transfer(uri_to_id(NULL, "http://lv2plug.in/ns/dev/string-port#StringTransfer")) diff --git a/src/shared/LV2URIMap.hpp b/src/shared/LV2URIMap.hpp index 0dd6b0cb..30823ef0 100644 --- a/src/shared/LV2URIMap.hpp +++ b/src/shared/LV2URIMap.hpp @@ -63,6 +63,7 @@ public: const uint32_t object_class_string; const uint32_t object_class_int32; const uint32_t object_class_float32; + const uint32_t object_class_vector; const uint32_t ui_format_events; const uint32_t midi_event; const uint32_t string_transfer; -- cgit v1.2.1