Mercurial > hg > piper-vamp-js
comparison example.cpp @ 85:1a9ba1c08f9e
Merge from branch process-noparse
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 14 Sep 2016 14:43:37 +0100 |
parents | a6ab5fd80eb7 |
children | a734a7e976fa |
comparison
equal
deleted
inserted
replaced
81:5e6ff69b4209 | 85:1a9ba1c08f9e |
---|---|
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, | |
73 const float *const *inputBuffers, | |
74 int sec, | |
75 int nsec) { | |
76 return library.processRaw(pluginHandle, inputBuffers, sec, nsec); | |
77 } | |
78 | |
72 void vampipeFreeJson(const char *json) { | 79 void vampipeFreeJson(const char *json) { |
73 return library.freeJson(json); | 80 return library.freeJson(json); |
74 } | 81 } |
75 | 82 |
76 } | 83 } |