diff options
author | David Robillard <d@drobilla.net> | 2013-01-08 04:05:01 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-01-08 04:05:01 +0000 |
commit | ac408e8d4ce77389e65d69e9a1ff30fd54a25ada (patch) | |
tree | 27d3f568c8a8040c345dd61a890dabd08549cd5c /src/server/LV2Info.cpp | |
parent | 63d21b23d262b0c5169d54822aa5723b6200c764 (diff) | |
download | ingen-ac408e8d4ce77389e65d69e9a1ff30fd54a25ada.tar.gz ingen-ac408e8d4ce77389e65d69e9a1ff30fd54a25ada.tar.bz2 ingen-ac408e8d4ce77389e65d69e9a1ff30fd54a25ada.zip |
Add support for URID ports.
Fix glib errors when resetting properties dialog.
Move RDFS domain/range/classes/etc code to reusable location.
Add preliminary "mesp" (message processing) plugin package.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4903 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/LV2Info.cpp')
-rw-r--r-- | src/server/LV2Info.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/server/LV2Info.cpp b/src/server/LV2Info.cpp index 744a30b2..841ee0fd 100644 --- a/src/server/LV2Info.cpp +++ b/src/server/LV2Info.cpp @@ -40,6 +40,7 @@ LV2Info::LV2Info(Ingen::World* world) , lv2_InputPort(lilv_new_uri(world->lilv_world(), LV2_CORE__InputPort)) , lv2_OutputPort(lilv_new_uri(world->lilv_world(), LV2_CORE__OutputPort)) , lv2_default(lilv_new_uri(world->lilv_world(), LV2_CORE__default)) + , lv2_designation(lilv_new_uri(world->lilv_world(), LV2_CORE__designation)) , lv2_portProperty(lilv_new_uri(world->lilv_world(), LV2_CORE__portProperty)) , lv2_sampleRate(lilv_new_uri(world->lilv_world(), LV2_CORE__sampleRate)) , morph_AutoMorphPort(lilv_new_uri(world->lilv_world(), LV2_MORPH__AutoMorphPort)) @@ -64,6 +65,7 @@ LV2Info::~LV2Info() lilv_node_free(lv2_InputPort); lilv_node_free(lv2_OutputPort); lilv_node_free(lv2_default); + lilv_node_free(lv2_designation); lilv_node_free(lv2_portProperty); lilv_node_free(lv2_sampleRate); lilv_node_free(morph_AutoMorphPort); |