Mercurial > hg > piper-vamp-js
comparison silvet.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 |
---|---|
19 | 19 |
20 const char *vampipeRequestJson(const char *request) { | 20 const char *vampipeRequestJson(const char *request) { |
21 return library.requestJson(request); | 21 return library.requestJson(request); |
22 } | 22 } |
23 | 23 |
24 const char *vampipeProcessRaw(int pluginHandle, | 24 const char *vampipeProcessRaw(int handle, |
25 const float *const *inputBuffers, | 25 const float *const *inputBuffers, |
26 int sec, | 26 int sec, |
27 int nsec) { | 27 int nsec) { |
28 return library.processRaw(pluginHandle, inputBuffers, sec, nsec); | 28 return library.processRaw(handle, inputBuffers, sec, nsec); |
29 } | 29 } |
30 | 30 |
31 void vampipeFreeJson(const char *json) { | 31 void vampipeFreeJson(const char *json) { |
32 return library.freeJson(json); | 32 return library.freeJson(json); |
33 } | 33 } |