diff options
author | David Robillard <d@drobilla.net> | 2010-02-14 01:27:46 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-02-14 01:27:46 +0000 |
commit | 49dcb26a2133e5067a1e63b2a5633444c08bb85a (patch) | |
tree | abf99ee05c65c581029e9139ec8de004f35c450d /src/client/OSCClientReceiver.cpp | |
parent | 16cc07ce3c37ca663ec40c2dcea3302de69966b1 (diff) | |
download | ingen-49dcb26a2133e5067a1e63b2a5633444c08bb85a.tar.gz ingen-49dcb26a2133e5067a1e63b2a5633444c08bb85a.tar.bz2 ingen-49dcb26a2133e5067a1e63b2a5633444c08bb85a.zip |
Remove voice specific control setting.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2445 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/client/OSCClientReceiver.cpp')
-rw-r--r-- | src/client/OSCClientReceiver.cpp | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/client/OSCClientReceiver.cpp b/src/client/OSCClientReceiver.cpp index 4cf28156..fabfd925 100644 --- a/src/client/OSCClientReceiver.cpp +++ b/src/client/OSCClientReceiver.cpp @@ -149,7 +149,6 @@ OSCClientReceiver::setup_callbacks() lo_server_thread_add_method(_st, "/connect", "ss", connection_cb, this); lo_server_thread_add_method(_st, "/disconnect", "ss", disconnection_cb, this); lo_server_thread_add_method(_st, "/set_property", NULL, set_property_cb, this); - lo_server_thread_add_method(_st, "/set_voice_value", "sif", set_voice_value_cb, this); lo_server_thread_add_method(_st, "/activity", "s", activity_cb, this); } @@ -236,19 +235,6 @@ OSCClientReceiver::_set_property_cb(const char* path, const char* types, lo_arg* int -OSCClientReceiver::_set_voice_value_cb(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg) -{ - const char* const port_path = &argv[0]->s; - const int voice = argv[1]->i; - const float value = argv[2]->f; - - _target->set_voice_value(port_path, voice, value); - - return 0; -} - - -int OSCClientReceiver::_activity_cb(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg) { const char* const port_path = &argv[0]->s; |