Mercurial > hg > piper-vamp-js
comparison silvet.cpp @ 109:9d20eb251fbc
Update again to latest plugin-terminology-free schema
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 06 Oct 2016 14:32:58 +0100 |
parents | 604244038b81 |
children | 90bf9d9f9c95 |
comparison
equal
deleted
inserted
replaced
108:19d4ac80cb5a | 109:9d20eb251fbc |
---|---|
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 } |