diff options
author | David Robillard <d@drobilla.net> | 2010-10-18 21:46:16 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-10-18 21:46:16 +0000 |
commit | 5177aa485f28e40e087042c2b7292fb9a94e7a3c (patch) | |
tree | 12133a503c0ec4000d6d56097c1f0939189ea4e0 /src/engine | |
parent | 44657ee4df631379f77695408aa4c275182db50f (diff) | |
download | ingen-5177aa485f28e40e087042c2b7292fb9a94e7a3c.tar.gz ingen-5177aa485f28e40e087042c2b7292fb9a94e7a3c.tar.bz2 ingen-5177aa485f28e40e087042c2b7292fb9a94e7a3c.zip |
Implement URI unmap extension and use it to serialise JSON dictionary keys.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2637 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine')
-rw-r--r-- | src/engine/LV2Node.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/engine/LV2Node.cpp b/src/engine/LV2Node.cpp index e2b4b2cd..e6593d13 100644 --- a/src/engine/LV2Node.cpp +++ b/src/engine/LV2Node.cpp @@ -172,7 +172,6 @@ LV2Node::instantiate(BufferFactory& bufs) instance(i), LV2_CONTEXT_MESSAGE); if (i == 0 && ctx_ext) { - Raul::info << _lv2_plugin->uri() << " has message context" << endl; assert(!_message_funcs); _message_funcs = (LV2_Contexts_MessageContext*)ctx_ext; } @@ -322,7 +321,6 @@ LV2Node::instantiate(BufferFactory& bufs) SLV2Value c = slv2_values_get_at(contexts, i); const char* context = slv2_value_as_string(c); if (!strcmp(LV2_CONTEXT_MESSAGE, context)) { - Raul::info << _lv2_plugin->uri() << " port " << i << " has message context" << endl; if (!_message_funcs) { warn << _lv2_plugin->uri() << " has a message port, but no context extension data." << endl; |