Mercurial > hg > vamp-test-plugin
comparison VampTestPlugin.cpp @ 2:3d07cfc3ee70
A few more outputs
author | Chris Cannam |
---|---|
date | Mon, 25 Mar 2013 16:20:27 +0000 |
parents | 572e2a3f3f11 |
children | 72c80798371e |
comparison
equal
deleted
inserted
replaced
1:572e2a3f3f11 | 2:3d07cfc3ee70 |
---|---|
126 | 126 |
127 //!!! review these: extents, units etc | 127 //!!! review these: extents, units etc |
128 | 128 |
129 d.identifier = "instants"; | 129 d.identifier = "instants"; |
130 d.name = "Instants"; | 130 d.name = "Instants"; |
131 d.description = ""; //!!! | 131 d.description = "Single time points without values"; |
132 d.unit = ""; | 132 d.unit = ""; |
133 d.hasFixedBinCount = true; | 133 d.hasFixedBinCount = true; |
134 d.binCount = 0; | 134 d.binCount = 0; |
135 d.hasKnownExtents = false; | 135 d.hasKnownExtents = false; |
136 d.isQuantized = false; | 136 d.isQuantized = false; |
138 d.hasDuration = false; | 138 d.hasDuration = false; |
139 list.push_back(d); | 139 list.push_back(d); |
140 | 140 |
141 d.identifier = "curve-oss"; | 141 d.identifier = "curve-oss"; |
142 d.name = "Curve: OneSamplePerStep"; | 142 d.name = "Curve: OneSamplePerStep"; |
143 d.description = ""; //!!! | 143 d.description = "A time series with one value per process block"; |
144 d.unit = ""; | 144 d.unit = ""; |
145 d.hasFixedBinCount = true; | 145 d.hasFixedBinCount = true; |
146 d.binCount = 1; | 146 d.binCount = 1; |
147 d.hasKnownExtents = false; | 147 d.hasKnownExtents = false; |
148 d.isQuantized = false; | 148 d.isQuantized = false; |
150 d.hasDuration = false; | 150 d.hasDuration = false; |
151 list.push_back(d); | 151 list.push_back(d); |
152 | 152 |
153 d.identifier = "curve-fsr"; | 153 d.identifier = "curve-fsr"; |
154 d.name = "Curve: FixedSampleRate"; | 154 d.name = "Curve: FixedSampleRate"; |
155 d.description = ""; //!!! | 155 d.description = "A time series with equally-spaced values (independent of process step size)"; |
156 d.unit = ""; | 156 d.unit = ""; |
157 d.hasFixedBinCount = true; | 157 d.hasFixedBinCount = true; |
158 d.binCount = 1; | 158 d.binCount = 1; |
159 d.hasKnownExtents = false; | 159 d.hasKnownExtents = false; |
160 d.isQuantized = false; | 160 d.isQuantized = false; |
163 d.hasDuration = false; | 163 d.hasDuration = false; |
164 list.push_back(d); | 164 list.push_back(d); |
165 | 165 |
166 d.identifier = "curve-vsr"; | 166 d.identifier = "curve-vsr"; |
167 d.name = "Curve: VariableSampleRate"; | 167 d.name = "Curve: VariableSampleRate"; |
168 d.description = ""; //!!! | 168 d.description = "A variably-spaced series of values"; |
169 d.unit = ""; | 169 d.unit = ""; |
170 d.hasFixedBinCount = true; | 170 d.hasFixedBinCount = true; |
171 d.binCount = 1; | 171 d.binCount = 1; |
172 d.hasKnownExtents = false; | 172 d.hasKnownExtents = false; |
173 d.isQuantized = false; | 173 d.isQuantized = false; |
174 d.sampleType = OutputDescriptor::VariableSampleRate; | 174 d.sampleType = OutputDescriptor::VariableSampleRate; |
175 d.sampleRate = 0; //!!! | 175 d.sampleRate = 0; |
176 d.hasDuration = false; | 176 d.hasDuration = false; |
177 list.push_back(d); | 177 list.push_back(d); |
178 | |
179 d.identifier = "grid-oss"; | |
180 d.name = "Grid: OneSamplePerStep"; | |
181 d.description = "A fixed-height grid of values with one column per process block"; | |
182 d.unit = ""; | |
183 d.hasFixedBinCount = true; | |
184 d.binCount = 1; | |
185 d.hasKnownExtents = false; | |
186 d.isQuantized = false; | |
187 d.sampleType = OutputDescriptor::VariableSampleRate; | |
188 d.sampleRate = 0; | |
189 d.hasDuration = false; | |
190 list.push_back(d); | |
191 | |
192 d.identifier = "grid-fsr"; | |
193 d.name = "Grid: FixedSampleRate"; | |
194 d.description = "A fixed-height grid of values with equally-spaced columns (independent of process step size)"; | |
195 d.unit = ""; | |
196 d.hasFixedBinCount = true; | |
197 d.binCount = 1; | |
198 d.hasKnownExtents = false; | |
199 d.isQuantized = false; | |
200 d.sampleType = OutputDescriptor::VariableSampleRate; | |
201 d.sampleRate = 0; | |
202 d.hasDuration = false; | |
203 list.push_back(d); | |
204 | |
178 | 205 |
179 return list; | 206 return list; |
180 } | 207 } |
181 | 208 |
182 bool | 209 bool |