# HG changeset patch # User Chris Cannam # Date 1463409982 -3600 # Node ID 197440dc8296ea1c98db6c3280675f52f29407ad # Parent d5fa758a85c49e1380f407a6a010a9781168aede Add process request diff -r d5fa758a85c4 -r 197440dc8296 capnproto/vamp.capnp --- a/capnproto/vamp.capnp Mon May 16 11:54:12 2016 +0100 +++ b/capnproto/vamp.capnp Mon May 16 15:46:22 2016 +0100 @@ -135,11 +135,18 @@ outputs @0 :List(OutputDescriptor); } +struct ProcessRequest { + pluginHandle @0 :Int64; + timestamp @1 :RealTime; + input @2 :List(List(Float32)); +} + struct VampRequest { request :union { list @0 :Void; load @1 :LoadRequest; configure @2 :ConfigurationRequest; + process @3 :ProcessRequest; } } @@ -150,6 +157,7 @@ list @2 :List(PluginStaticData); load @3 :LoadResponse; configure @4 :ConfigurationResponse; + process @5 :FeatureSet; } }