changeset 6:2606f98ef2d9

More requests/responses
author Chris Cannam
date Wed, 18 May 2016 13:54:33 +0100
parents 689bd71a5aff
children b14b42b3a7a2
files capnproto/vamp.capnp
diffstat 1 files changed, 6 insertions(+), 2 deletions(-) [+]
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;
     }
 }