Mercurial > hg > piper-vamp-js
comparison vamp-test-plugin.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 |
---|---|
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 } |