Mercurial > hg > piper-vamp-js
comparison qm-vamp-plugins.cpp @ 110:2f621b00747e
Merge from branch jsonrpc
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 06 Oct 2016 14:33:12 +0100 |
parents | 9d20eb251fbc |
children | 90bf9d9f9c95 |
comparison
equal
deleted
inserted
replaced
107:f272e46f5615 | 110:2f621b00747e |
---|---|
88 | 88 |
89 const char *vampipeRequestJson(const char *request) { | 89 const char *vampipeRequestJson(const char *request) { |
90 return library.requestJson(request); | 90 return library.requestJson(request); |
91 } | 91 } |
92 | 92 |
93 const char *vampipeProcessRaw(int pluginHandle, | 93 const char *vampipeProcessRaw(int handle, |
94 const float *const *inputBuffers, | 94 const float *const *inputBuffers, |
95 int sec, | 95 int sec, |
96 int nsec) { | 96 int nsec) { |
97 return library.processRaw(pluginHandle, inputBuffers, sec, nsec); | 97 return library.processRaw(handle, inputBuffers, sec, nsec); |
98 } | 98 } |
99 | 99 |
100 void vampipeFreeJson(const char *json) { | 100 void vampipeFreeJson(const char *json) { |
101 return library.freeJson(json); | 101 return library.freeJson(json); |
102 } | 102 } |