comparison example.cpp @ 16:32c456e04855

Merge from branch process-noparse
author Chris Cannam
date Wed, 14 Sep 2016 14:43:37 +0100
parents 171f92179c3e
children a734a7e976fa
comparison
equal deleted inserted replaced
12:8fdafb8f1c45 16:32c456e04855
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 }