Mercurial > hg > piper-vamp-js
diff VamPipePluginLibrary.h @ 83:a6ab5fd80eb7
Rename process -> processRaw
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 14 Sep 2016 14:41:24 +0100 |
parents | 5bd5d48a1c21 |
children | 0e1909abe921 |
line wrap: on
line diff
--- a/VamPipePluginLibrary.h Fri Sep 09 15:41:35 2016 +0100 +++ b/VamPipePluginLibrary.h Wed Sep 14 14:41:24 2016 +0100 @@ -58,9 +58,9 @@ return strdup(requestJsonImpl(request).c_str()); } - const char *process(int handle, const float *const *inputBuffers, - int sec, int nsec) { - return strdup(processImpl(handle, inputBuffers, sec, nsec).c_str()); + const char *processRaw(int handle, const float *const *inputBuffers, + int sec, int nsec) { + return strdup(processRawImpl(handle, inputBuffers, sec, nsec).c_str()); } void freeJson(const char *json) { @@ -69,7 +69,7 @@ private: std::string requestJsonImpl(std::string req); - std::string processImpl(int, const float *const *, int, int); + std::string processRawImpl(int, const float *const *, int, int); RequestOrResponse readRequest(std::string req); std::string writeResponse(const RequestOrResponse &resp) const;