Mercurial > hg > piper-vamp-js
comparison example.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 |
---|---|
67 | 67 |
68 const char *vampipeRequestJson(const char *request) { | 68 const char *vampipeRequestJson(const char *request) { |
69 return library.requestJson(request); | 69 return library.requestJson(request); |
70 } | 70 } |
71 | 71 |
72 const char *vampipeProcessRaw(int pluginHandle, | 72 const char *vampipeProcessRaw(int handle, |
73 const float *const *inputBuffers, | 73 const float *const *inputBuffers, |
74 int sec, | 74 int sec, |
75 int nsec) { | 75 int nsec) { |
76 return library.processRaw(pluginHandle, inputBuffers, sec, nsec); | 76 return library.processRaw(handle, inputBuffers, sec, nsec); |
77 } | 77 } |
78 | 78 |
79 void vampipeFreeJson(const char *json) { | 79 void vampipeFreeJson(const char *json) { |
80 return library.freeJson(json); | 80 return library.freeJson(json); |
81 } | 81 } |