Mercurial > hg > piper-vamp-js
comparison vamp-test-plugin.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 | 498f36aab7d4 |
children | 90bf9d9f9c95 |
comparison
equal
deleted
inserted
replaced
108:19d4ac80cb5a | 109:9d20eb251fbc |
---|---|
66 | 66 |
67 const char *vampipeRequestJson(const char *request) { | 67 const char *vampipeRequestJson(const char *request) { |
68 return library.requestJson(request); | 68 return library.requestJson(request); |
69 } | 69 } |
70 | 70 |
71 const char *vampipeProcessRaw(int pluginHandle, | 71 const char *vampipeProcessRaw(int handle, |
72 const float *const *inputBuffers, | 72 const float *const *inputBuffers, |
73 int sec, | 73 int sec, |
74 int nsec) { | 74 int nsec) { |
75 return library.processRaw(pluginHandle, inputBuffers, sec, nsec); | 75 return library.processRaw(handle, inputBuffers, sec, nsec); |
76 } | 76 } |
77 | 77 |
78 void vampipeFreeJson(const char *json) { | 78 void vampipeFreeJson(const char *json) { |
79 return library.freeJson(json); | 79 return library.freeJson(json); |
80 } | 80 } |