annotate capnproto/vamp.capnp @ 68:a5ba837bca28

Update again to latest plugin-terminology-free schema
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 06 Oct 2016 14:32:58 +0100
parents 6f160dee1192
children 302a8e35248c
rev   line source
c@5 1
c@5 2 @0xc4b1c6c44c999206;
c@5 3
c@5 4 using Cxx = import "/capnp/c++.capnp";
c@5 5 $Cxx.namespace("vampipe");
c@5 6
c@5 7 enum InputDomain {
c@5 8 timeDomain @0;
c@5 9 frequencyDomain @1;
c@5 10 }
c@5 11
c@5 12 enum SampleType {
c@5 13 oneSamplePerStep @0;
c@5 14 fixedSampleRate @1;
c@5 15 variableSampleRate @2;
c@5 16 }
c@5 17
c@5 18 enum AdapterFlag {
c@5 19 adaptInputDomain @0;
c@5 20 adaptChannelCount @1;
c@5 21 adaptBufferSize @2;
c@5 22 }
c@5 23
c@5 24 const adaptAllSafe :List(AdapterFlag) =
c@5 25 [ adaptInputDomain, adaptChannelCount ];
c@5 26
c@5 27 const adaptAll :List(AdapterFlag) =
c@5 28 [ adaptInputDomain, adaptChannelCount, adaptBufferSize ];
c@5 29
c@5 30 struct RealTime {
c@5 31 sec @0 :Int32 = 0;
c@5 32 nsec @1 :Int32 = 0;
c@5 33 }
c@5 34
c@5 35 struct Basic {
c@5 36 identifier @0 :Text;
c@5 37 name @1 :Text;
c@5 38 description @2 :Text;
c@5 39 }
c@5 40
c@5 41 struct ParameterDescriptor {
c@5 42 basic @0 :Basic;
c@5 43 unit @1 :Text;
c@5 44 minValue @2 :Float32 = 0.0;
c@5 45 maxValue @3 :Float32 = 0.0;
c@5 46 defaultValue @4 :Float32 = 0.0;
c@5 47 isQuantized @5 :Bool = false;
c@5 48 quantizeStep @6 :Float32 = 0.0;
c@5 49 valueNames @7 :List(Text) = [];
c@5 50 }
c@5 51
c@64 52 struct ConfiguredOutputDescriptor {
c@64 53 unit @0 :Text;
c@64 54 hasFixedBinCount @1 :Bool = false;
c@64 55 binCount @2 :Int32 = 0;
c@64 56 binNames @3 :List(Text) = [];
c@64 57 hasKnownExtents @4 :Bool = false;
c@64 58 minValue @5 :Float32 = 0.0;
c@64 59 maxValue @6 :Float32 = 0.0;
c@64 60 isQuantized @7 :Bool = false;
c@64 61 quantizeStep @8 :Float32 = 0.0;
c@64 62 sampleType @9 :SampleType;
c@64 63 sampleRate @10 :Float32 = 0.0;
c@64 64 hasDuration @11 :Bool = false;
c@64 65 }
c@64 66
c@5 67 struct OutputDescriptor {
c@5 68 basic @0 :Basic;
c@64 69 configured @1 :ConfiguredOutputDescriptor;
c@5 70 }
c@5 71
c@68 72 struct ExtractorStaticData {
c@68 73 key @0 :Text;
c@5 74 basic @1 :Basic;
c@5 75 maker @2 :Text;
c@5 76 copyright @3 :Text;
c@68 77 version @4 :Int32;
c@5 78 category @5 :List(Text);
c@5 79 minChannelCount @6 :Int32;
c@5 80 maxChannelCount @7 :Int32;
c@5 81 parameters @8 :List(ParameterDescriptor);
c@5 82 programs @9 :List(Text);
c@5 83 inputDomain @10 :InputDomain;
c@5 84 basicOutputInfo @11 :List(Basic);
c@5 85 }
c@5 86
c@5 87 struct ProcessInput {
c@5 88 inputBuffers @0 :List(List(Float32));
c@5 89 timestamp @1 :RealTime;
c@5 90 }
c@5 91
c@5 92 struct Feature {
c@5 93 hasTimestamp @0 :Bool = false;
c@5 94 timestamp @1 :RealTime;
c@5 95 hasDuration @2 :Bool = false;
c@5 96 duration @3 :RealTime;
c@5 97 label @4 :Text;
c@66 98 featureValues @5 :List(Float32) = [];
c@5 99 }
c@5 100
c@5 101 struct FeatureSet {
c@5 102 struct FSPair {
c@49 103 output @0 :Text;
c@5 104 features @1 :List(Feature) = [];
c@5 105 }
c@5 106 featurePairs @0 :List(FSPair);
c@5 107 }
c@5 108
c@68 109 struct Configuration {
c@5 110 struct PVPair {
c@5 111 parameter @0 :Text;
c@5 112 value @1 :Float32;
c@5 113 }
c@5 114 parameterValues @0 :List(PVPair);
c@5 115 currentProgram @1 :Text;
c@5 116 channelCount @2 :Int32;
c@5 117 stepSize @3 :Int32;
c@5 118 blockSize @4 :Int32;
c@5 119 }
c@5 120
c@68 121 struct ListRequest {
c@68 122 }
c@68 123
c@24 124 struct ListResponse {
c@68 125 available @0 :List(ExtractorStaticData);
c@24 126 }
c@24 127
c@5 128 struct LoadRequest {
c@68 129 key @0 :Text;
c@5 130 inputSampleRate @1 :Float32;
c@5 131 adapterFlags @2 :List(AdapterFlag);
c@5 132 }
c@5 133
c@5 134 struct LoadResponse {
c@68 135 handle @0 :Int32;
c@68 136 staticData @1 :ExtractorStaticData;
c@68 137 defaultConfiguration @2 :Configuration;
c@5 138 }
c@5 139
c@5 140 struct ConfigurationRequest {
c@68 141 handle @0 :Int32;
c@68 142 configuration @1 :Configuration;
c@5 143 }
c@5 144
c@5 145 struct ConfigurationResponse {
c@68 146 handle @0 :Int32;
c@55 147 outputs @1 :List(OutputDescriptor);
c@5 148 }
c@5 149
c@9 150 struct ProcessRequest {
c@68 151 handle @0 :Int32;
c@61 152 processInput @1 :ProcessInput;
c@9 153 }
c@9 154
c@49 155 struct ProcessResponse {
c@68 156 handle @0 :Int32;
c@49 157 features @1 :FeatureSet;
c@49 158 }
c@49 159
c@23 160 struct FinishRequest {
c@68 161 handle @0 :Int32;
c@23 162 }
c@23 163
c@68 164 struct Error {
c@68 165 code @0 :Int32;
c@68 166 message @1 :Text;
c@68 167 }
c@68 168
c@68 169 struct RpcRequest {
c@5 170 request :union {
c@68 171 list @0 :ListRequest;
c@5 172 load @1 :LoadRequest;
c@5 173 configure @2 :ConfigurationRequest;
c@9 174 process @3 :ProcessRequest;
c@23 175 finish @4 :FinishRequest; # getRemainingFeatures and unload
c@5 176 }
c@5 177 }
c@5 178
c@68 179 struct RpcResponse {
c@5 180 response :union {
c@68 181 error @0 :Error;
c@68 182 list @1 :ListResponse;
c@68 183 load @2 :LoadResponse;
c@68 184 configure @3 :ConfigurationResponse;
c@68 185 process @4 :ProcessResponse;
c@68 186 finish @5 :ProcessResponse;
c@5 187 }
c@5 188 }
c@5 189