diff capnproto/vamp.capnp @ 15:d907576aa299

More requests/responses
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 18 May 2016 13:54:33 +0100
parents c35d0909a74e
children d678cd00e593
line wrap: on
line diff
--- a/capnproto/vamp.capnp	Wed May 18 12:21:23 2016 +0100
+++ b/capnproto/vamp.capnp	Wed May 18 13:54:33 2016 +0100
@@ -140,6 +140,10 @@
     input              @1  :ProcessInput;
 }
 
+struct ProcessResponse {
+    features           @0  :FeatureSet;
+}
+
 struct VampRequest {
     request :union {
 	list           @0  :Void;
@@ -157,8 +161,8 @@
 	list           @2  :List(PluginStaticData);
 	load           @3  :LoadResponse;
 	configure      @4  :ConfigurationResponse;
-	process        @5  :FeatureSet;
-	finish         @6  :FeatureSet;
+	process        @5  :ProcessResponse;
+	finish         @6  :ProcessResponse;
     }
 }