Mercurial > hg > piper-cpp
comparison capnproto/vamp.capnp @ 10:c8451896c40e
Some conversions for plugin handles
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Tue, 17 May 2016 09:58:15 +0100 |
parents | 197440dc8296 |
children | 828930f9a65d |
comparison
equal
deleted
inserted
replaced
9:197440dc8296 | 10:c8451896c40e |
---|---|
119 inputSampleRate @1 :Float32; | 119 inputSampleRate @1 :Float32; |
120 adapterFlags @2 :List(AdapterFlag); | 120 adapterFlags @2 :List(AdapterFlag); |
121 } | 121 } |
122 | 122 |
123 struct LoadResponse { | 123 struct LoadResponse { |
124 pluginHandle @0 :Int64; | 124 pluginHandle @0 :Int32; |
125 staticData @1 :PluginStaticData; | 125 staticData @1 :PluginStaticData; |
126 defaultConfiguration @2 :PluginConfiguration; | 126 defaultConfiguration @2 :PluginConfiguration; |
127 } | 127 } |
128 | 128 |
129 struct ConfigurationRequest { | 129 struct ConfigurationRequest { |
130 pluginHandle @0 :Int64; | 130 pluginHandle @0 :Int32; |
131 configuration @1 :PluginConfiguration; | 131 configuration @1 :PluginConfiguration; |
132 } | 132 } |
133 | 133 |
134 struct ConfigurationResponse { | 134 struct ConfigurationResponse { |
135 outputs @0 :List(OutputDescriptor); | 135 outputs @0 :List(OutputDescriptor); |
136 } | 136 } |
137 | 137 |
138 struct ProcessRequest { | 138 struct ProcessRequest { |
139 pluginHandle @0 :Int64; | 139 pluginHandle @0 :Int32; |
140 timestamp @1 :RealTime; | 140 timestamp @1 :RealTime; |
141 input @2 :List(List(Float32)); | 141 input @2 :List(List(Float32)); |
142 } | 142 } |
143 | 143 |
144 struct VampRequest { | 144 struct VampRequest { |