# HG changeset patch # User Chris Cannam # Date 1474459175 -3600 # Node ID 0ea374ea96a2c88088414a70139ec36eaed98a29 # Parent 8a4bcb3dc3a6fd0de1068c3aaf57da6d27bba53b input -> processInput, to align with JSON diff -r 8a4bcb3dc3a6 -r 0ea374ea96a2 capnproto/VampnProto.h --- 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 diff -r 8a4bcb3dc3a6 -r 0ea374ea96a2 capnproto/vamp.capnp --- 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 {