changeset 61:0ea374ea96a2

input -> processInput, to align with JSON
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 21 Sep 2016 12:59:35 +0100
parents 8a4bcb3dc3a6
children 2d866edd79d5
files capnproto/VampnProto.h capnproto/vamp.capnp
diffstat 2 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/capnproto/VampnProto.h	Tue Sep 20 16:35:47 2016 +0100
+++ b/capnproto/VampnProto.h	Wed Sep 21 12:59:35 2016 +0100
@@ -639,7 +639,7 @@
                         const PluginHandleMapper &pmapper) {
 
         b.setPluginHandle(pmapper.pluginToHandle(pr.plugin));
-        auto input = b.initInput();
+        auto input = b.initProcessInput();
         buildProcessInput(input, pr.timestamp, pr.inputBuffers);
     }
 
@@ -650,7 +650,7 @@
 
         auto h = r.getPluginHandle();
         pr.plugin = pmapper.handleToPlugin(h);
-        readProcessInput(pr.timestamp, pr.inputBuffers, r.getInput());
+        readProcessInput(pr.timestamp, pr.inputBuffers, r.getProcessInput());
     }
 
     static void
--- a/capnproto/vamp.capnp	Tue Sep 20 16:35:47 2016 +0100
+++ b/capnproto/vamp.capnp	Wed Sep 21 12:59:35 2016 +0100
@@ -142,7 +142,7 @@
 
 struct ProcessRequest {
     pluginHandle       @0  :Int32;
-    input              @1  :ProcessInput;
+    processInput       @1  :ProcessInput;
 }
 
 struct ProcessResponse {