cannam@3
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
cannam@3
|
2
|
cannam@3
|
3 /*
|
cannam@3
|
4 Vamp
|
cannam@3
|
5
|
cannam@3
|
6 An API for audio analysis and feature extraction plugins.
|
cannam@3
|
7
|
cannam@3
|
8 Centre for Digital Music, Queen Mary, University of London.
|
cannam@3
|
9 Copyright 2006 Chris Cannam.
|
cannam@3
|
10
|
cannam@3
|
11 Permission is hereby granted, free of charge, to any person
|
cannam@3
|
12 obtaining a copy of this software and associated documentation
|
cannam@3
|
13 files (the "Software"), to deal in the Software without
|
cannam@3
|
14 restriction, including without limitation the rights to use, copy,
|
cannam@3
|
15 modify, merge, publish, distribute, sublicense, and/or sell copies
|
cannam@3
|
16 of the Software, and to permit persons to whom the Software is
|
cannam@3
|
17 furnished to do so, subject to the following conditions:
|
cannam@3
|
18
|
cannam@3
|
19 The above copyright notice and this permission notice shall be
|
cannam@3
|
20 included in all copies or substantial portions of the Software.
|
cannam@3
|
21
|
cannam@3
|
22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
cannam@3
|
23 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
cannam@3
|
24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
cannam@6
|
25 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
cannam@3
|
26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
cannam@3
|
27 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
cannam@3
|
28 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
cannam@3
|
29
|
cannam@3
|
30 Except as contained in this notice, the names of the Centre for
|
cannam@3
|
31 Digital Music; Queen Mary, University of London; and Chris Cannam
|
cannam@3
|
32 shall not be used in advertising or otherwise to promote the sale,
|
cannam@3
|
33 use or other dealings in this Software without prior written
|
cannam@3
|
34 authorization.
|
cannam@3
|
35 */
|
cannam@3
|
36
|
cannam@3
|
37 #include "PluginAdapter.h"
|
cannam@3
|
38
|
cannam@3
|
39 namespace Vamp {
|
cannam@3
|
40
|
cannam@3
|
41 PluginAdapterBase::PluginAdapterBase() :
|
cannam@3
|
42 m_populated(false)
|
cannam@3
|
43 {
|
cannam@3
|
44 }
|
cannam@3
|
45
|
cannam@3
|
46 const VampPluginDescriptor *
|
cannam@3
|
47 PluginAdapterBase::getDescriptor()
|
cannam@3
|
48 {
|
cannam@3
|
49 if (m_populated) return &m_descriptor;
|
cannam@3
|
50
|
cannam@3
|
51 Plugin *plugin = createPlugin(48000);
|
cannam@3
|
52
|
cannam@3
|
53 m_parameters = plugin->getParameterDescriptors();
|
cannam@3
|
54 m_programs = plugin->getPrograms();
|
cannam@3
|
55
|
cannam@3
|
56 m_descriptor.name = strdup(plugin->getName().c_str());
|
cannam@3
|
57 m_descriptor.description = strdup(plugin->getDescription().c_str());
|
cannam@3
|
58 m_descriptor.maker = strdup(plugin->getMaker().c_str());
|
cannam@3
|
59 m_descriptor.pluginVersion = plugin->getPluginVersion();
|
cannam@3
|
60 m_descriptor.copyright = strdup(plugin->getCopyright().c_str());
|
cannam@3
|
61
|
cannam@3
|
62 m_descriptor.parameterCount = m_parameters.size();
|
cannam@3
|
63 m_descriptor.parameters = (const VampParameterDescriptor **)
|
cannam@3
|
64 malloc(m_parameters.size() * sizeof(VampParameterDescriptor));
|
cannam@7
|
65
|
cannam@7
|
66 unsigned int i;
|
cannam@3
|
67
|
cannam@7
|
68 for (i = 0; i < m_parameters.size(); ++i) {
|
cannam@3
|
69 VampParameterDescriptor *desc = (VampParameterDescriptor *)
|
cannam@3
|
70 malloc(sizeof(VampParameterDescriptor));
|
cannam@3
|
71 desc->name = strdup(m_parameters[i].name.c_str());
|
cannam@3
|
72 desc->description = strdup(m_parameters[i].description.c_str());
|
cannam@3
|
73 desc->unit = strdup(m_parameters[i].unit.c_str());
|
cannam@3
|
74 desc->minValue = m_parameters[i].minValue;
|
cannam@3
|
75 desc->maxValue = m_parameters[i].maxValue;
|
cannam@3
|
76 desc->defaultValue = m_parameters[i].defaultValue;
|
cannam@3
|
77 desc->isQuantized = m_parameters[i].isQuantized;
|
cannam@3
|
78 desc->quantizeStep = m_parameters[i].quantizeStep;
|
cannam@9
|
79 desc->valueNames = 0;
|
cannam@9
|
80 if (desc->isQuantized && !m_parameters[i].valueNames.empty()) {
|
cannam@9
|
81 desc->valueNames = (const char **)
|
cannam@9
|
82 malloc((m_parameters[i].valueNames.size()+1) * sizeof(char *));
|
cannam@9
|
83 for (unsigned int j = 0; j < m_parameters[i].valueNames.size(); ++j) {
|
cannam@9
|
84 desc->valueNames[j] = strdup(m_parameters[i].valueNames[j].c_str());
|
cannam@9
|
85 }
|
cannam@9
|
86 desc->valueNames[m_parameters[i].valueNames.size()] = 0;
|
cannam@9
|
87 }
|
cannam@3
|
88 m_descriptor.parameters[i] = desc;
|
cannam@3
|
89 }
|
cannam@3
|
90
|
cannam@3
|
91 m_descriptor.programCount = m_programs.size();
|
cannam@3
|
92 m_descriptor.programs = (const char **)
|
cannam@3
|
93 malloc(m_programs.size() * sizeof(const char *));
|
cannam@3
|
94
|
cannam@7
|
95 for (i = 0; i < m_programs.size(); ++i) {
|
cannam@3
|
96 m_descriptor.programs[i] = strdup(m_programs[i].c_str());
|
cannam@3
|
97 }
|
cannam@3
|
98
|
cannam@3
|
99 if (plugin->getInputDomain() == Plugin::FrequencyDomain) {
|
cannam@3
|
100 m_descriptor.inputDomain = vampFrequencyDomain;
|
cannam@3
|
101 } else {
|
cannam@3
|
102 m_descriptor.inputDomain = vampTimeDomain;
|
cannam@3
|
103 }
|
cannam@3
|
104
|
cannam@3
|
105 m_descriptor.instantiate = vampInstantiate;
|
cannam@3
|
106 m_descriptor.cleanup = vampCleanup;
|
cannam@3
|
107 m_descriptor.initialise = vampInitialise;
|
cannam@3
|
108 m_descriptor.reset = vampReset;
|
cannam@3
|
109 m_descriptor.getParameter = vampGetParameter;
|
cannam@3
|
110 m_descriptor.setParameter = vampSetParameter;
|
cannam@3
|
111 m_descriptor.getCurrentProgram = vampGetCurrentProgram;
|
cannam@3
|
112 m_descriptor.selectProgram = vampSelectProgram;
|
cannam@3
|
113 m_descriptor.getPreferredStepSize = vampGetPreferredStepSize;
|
cannam@3
|
114 m_descriptor.getPreferredBlockSize = vampGetPreferredBlockSize;
|
cannam@3
|
115 m_descriptor.getMinChannelCount = vampGetMinChannelCount;
|
cannam@3
|
116 m_descriptor.getMaxChannelCount = vampGetMaxChannelCount;
|
cannam@3
|
117 m_descriptor.getOutputCount = vampGetOutputCount;
|
cannam@3
|
118 m_descriptor.getOutputDescriptor = vampGetOutputDescriptor;
|
cannam@3
|
119 m_descriptor.releaseOutputDescriptor = vampReleaseOutputDescriptor;
|
cannam@3
|
120 m_descriptor.process = vampProcess;
|
cannam@3
|
121 m_descriptor.getRemainingFeatures = vampGetRemainingFeatures;
|
cannam@3
|
122 m_descriptor.releaseFeatureSet = vampReleaseFeatureSet;
|
cannam@3
|
123
|
cannam@3
|
124 m_adapterMap[&m_descriptor] = this;
|
cannam@3
|
125
|
cannam@3
|
126 delete plugin;
|
cannam@3
|
127
|
cannam@3
|
128 m_populated = true;
|
cannam@3
|
129 return &m_descriptor;
|
cannam@3
|
130 }
|
cannam@3
|
131
|
cannam@3
|
132 PluginAdapterBase::~PluginAdapterBase()
|
cannam@3
|
133 {
|
cannam@3
|
134 if (!m_populated) return;
|
cannam@3
|
135
|
cannam@3
|
136 free((void *)m_descriptor.name);
|
cannam@3
|
137 free((void *)m_descriptor.description);
|
cannam@3
|
138 free((void *)m_descriptor.maker);
|
cannam@3
|
139 free((void *)m_descriptor.copyright);
|
cannam@3
|
140
|
cannam@3
|
141 for (unsigned int i = 0; i < m_descriptor.parameterCount; ++i) {
|
cannam@3
|
142 const VampParameterDescriptor *desc = m_descriptor.parameters[i];
|
cannam@3
|
143 free((void *)desc->name);
|
cannam@3
|
144 free((void *)desc->description);
|
cannam@3
|
145 free((void *)desc->unit);
|
cannam@9
|
146 if (desc->valueNames) {
|
cannam@9
|
147 for (unsigned int j = 0; desc->valueNames[j]; ++j) {
|
cannam@9
|
148 free((void *)desc->valueNames[j]);
|
cannam@9
|
149 }
|
cannam@9
|
150 free((void *)desc->valueNames);
|
cannam@9
|
151 }
|
cannam@3
|
152 }
|
cannam@3
|
153 free((void *)m_descriptor.parameters);
|
cannam@3
|
154
|
cannam@3
|
155 for (unsigned int i = 0; i < m_descriptor.programCount; ++i) {
|
cannam@3
|
156 free((void *)m_descriptor.programs[i]);
|
cannam@3
|
157 }
|
cannam@3
|
158 free((void *)m_descriptor.programs);
|
cannam@3
|
159
|
cannam@3
|
160 m_adapterMap.erase(&m_descriptor);
|
cannam@3
|
161 }
|
cannam@3
|
162
|
cannam@3
|
163 PluginAdapterBase *
|
cannam@3
|
164 PluginAdapterBase::lookupAdapter(VampPluginHandle handle)
|
cannam@3
|
165 {
|
cannam@3
|
166 AdapterMap::const_iterator i = m_adapterMap.find(handle);
|
cannam@3
|
167 if (i == m_adapterMap.end()) return 0;
|
cannam@3
|
168 return i->second;
|
cannam@3
|
169 }
|
cannam@3
|
170
|
cannam@3
|
171 VampPluginHandle
|
cannam@3
|
172 PluginAdapterBase::vampInstantiate(const VampPluginDescriptor *desc,
|
cannam@3
|
173 float inputSampleRate)
|
cannam@3
|
174 {
|
cannam@3
|
175 if (m_adapterMap.find(desc) == m_adapterMap.end()) return 0;
|
cannam@3
|
176 PluginAdapterBase *adapter = m_adapterMap[desc];
|
cannam@3
|
177 if (desc != &adapter->m_descriptor) return 0;
|
cannam@3
|
178
|
cannam@3
|
179 Plugin *plugin = adapter->createPlugin(inputSampleRate);
|
cannam@3
|
180 if (plugin) {
|
cannam@3
|
181 m_adapterMap[plugin] = adapter;
|
cannam@3
|
182 }
|
cannam@3
|
183
|
cannam@3
|
184 return plugin;
|
cannam@3
|
185 }
|
cannam@3
|
186
|
cannam@3
|
187 void
|
cannam@3
|
188 PluginAdapterBase::vampCleanup(VampPluginHandle handle)
|
cannam@3
|
189 {
|
cannam@3
|
190 PluginAdapterBase *adapter = lookupAdapter(handle);
|
cannam@3
|
191 if (!adapter) {
|
cannam@3
|
192 delete ((Plugin *)handle);
|
cannam@3
|
193 return;
|
cannam@3
|
194 }
|
cannam@3
|
195 adapter->cleanup(((Plugin *)handle));
|
cannam@3
|
196 }
|
cannam@3
|
197
|
cannam@3
|
198 int
|
cannam@3
|
199 PluginAdapterBase::vampInitialise(VampPluginHandle handle,
|
cannam@3
|
200 unsigned int channels,
|
cannam@3
|
201 unsigned int stepSize,
|
cannam@3
|
202 unsigned int blockSize)
|
cannam@3
|
203 {
|
cannam@3
|
204 bool result = ((Plugin *)handle)->initialise
|
cannam@3
|
205 (channels, stepSize, blockSize);
|
cannam@3
|
206 return result ? 1 : 0;
|
cannam@3
|
207 }
|
cannam@3
|
208
|
cannam@3
|
209 void
|
cannam@3
|
210 PluginAdapterBase::vampReset(VampPluginHandle handle)
|
cannam@3
|
211 {
|
cannam@3
|
212 ((Plugin *)handle)->reset();
|
cannam@3
|
213 }
|
cannam@3
|
214
|
cannam@3
|
215 float
|
cannam@3
|
216 PluginAdapterBase::vampGetParameter(VampPluginHandle handle,
|
cannam@3
|
217 int param)
|
cannam@3
|
218 {
|
cannam@3
|
219 PluginAdapterBase *adapter = lookupAdapter(handle);
|
cannam@3
|
220 if (!adapter) return 0.0;
|
cannam@3
|
221 Plugin::ParameterList &list = adapter->m_parameters;
|
cannam@3
|
222 return ((Plugin *)handle)->getParameter(list[param].name);
|
cannam@3
|
223 }
|
cannam@3
|
224
|
cannam@3
|
225 void
|
cannam@3
|
226 PluginAdapterBase::vampSetParameter(VampPluginHandle handle,
|
cannam@3
|
227 int param, float value)
|
cannam@3
|
228 {
|
cannam@3
|
229 PluginAdapterBase *adapter = lookupAdapter(handle);
|
cannam@3
|
230 if (!adapter) return;
|
cannam@3
|
231 Plugin::ParameterList &list = adapter->m_parameters;
|
cannam@3
|
232 ((Plugin *)handle)->setParameter(list[param].name, value);
|
cannam@3
|
233 }
|
cannam@3
|
234
|
cannam@3
|
235 unsigned int
|
cannam@3
|
236 PluginAdapterBase::vampGetCurrentProgram(VampPluginHandle handle)
|
cannam@3
|
237 {
|
cannam@3
|
238 PluginAdapterBase *adapter = lookupAdapter(handle);
|
cannam@3
|
239 if (!adapter) return 0;
|
cannam@3
|
240 Plugin::ProgramList &list = adapter->m_programs;
|
cannam@3
|
241 std::string program = ((Plugin *)handle)->getCurrentProgram();
|
cannam@3
|
242 for (unsigned int i = 0; i < list.size(); ++i) {
|
cannam@3
|
243 if (list[i] == program) return i;
|
cannam@3
|
244 }
|
cannam@3
|
245 return 0;
|
cannam@3
|
246 }
|
cannam@3
|
247
|
cannam@3
|
248 void
|
cannam@3
|
249 PluginAdapterBase::vampSelectProgram(VampPluginHandle handle,
|
cannam@3
|
250 unsigned int program)
|
cannam@3
|
251 {
|
cannam@3
|
252 PluginAdapterBase *adapter = lookupAdapter(handle);
|
cannam@3
|
253 if (!adapter) return;
|
cannam@3
|
254 Plugin::ProgramList &list = adapter->m_programs;
|
cannam@3
|
255 ((Plugin *)handle)->selectProgram(list[program]);
|
cannam@3
|
256 }
|
cannam@3
|
257
|
cannam@3
|
258 unsigned int
|
cannam@3
|
259 PluginAdapterBase::vampGetPreferredStepSize(VampPluginHandle handle)
|
cannam@3
|
260 {
|
cannam@3
|
261 return ((Plugin *)handle)->getPreferredStepSize();
|
cannam@3
|
262 }
|
cannam@3
|
263
|
cannam@3
|
264 unsigned int
|
cannam@3
|
265 PluginAdapterBase::vampGetPreferredBlockSize(VampPluginHandle handle)
|
cannam@3
|
266 {
|
cannam@3
|
267 return ((Plugin *)handle)->getPreferredBlockSize();
|
cannam@3
|
268 }
|
cannam@3
|
269
|
cannam@3
|
270 unsigned int
|
cannam@3
|
271 PluginAdapterBase::vampGetMinChannelCount(VampPluginHandle handle)
|
cannam@3
|
272 {
|
cannam@3
|
273 return ((Plugin *)handle)->getMinChannelCount();
|
cannam@3
|
274 }
|
cannam@3
|
275
|
cannam@3
|
276 unsigned int
|
cannam@3
|
277 PluginAdapterBase::vampGetMaxChannelCount(VampPluginHandle handle)
|
cannam@3
|
278 {
|
cannam@3
|
279 return ((Plugin *)handle)->getMaxChannelCount();
|
cannam@3
|
280 }
|
cannam@3
|
281
|
cannam@3
|
282 unsigned int
|
cannam@3
|
283 PluginAdapterBase::vampGetOutputCount(VampPluginHandle handle)
|
cannam@3
|
284 {
|
cannam@3
|
285 PluginAdapterBase *adapter = lookupAdapter(handle);
|
cannam@3
|
286 if (!adapter) return 0;
|
cannam@3
|
287 return adapter->getOutputCount((Plugin *)handle);
|
cannam@3
|
288 }
|
cannam@3
|
289
|
cannam@3
|
290 VampOutputDescriptor *
|
cannam@3
|
291 PluginAdapterBase::vampGetOutputDescriptor(VampPluginHandle handle,
|
cannam@3
|
292 unsigned int i)
|
cannam@3
|
293 {
|
cannam@3
|
294 PluginAdapterBase *adapter = lookupAdapter(handle);
|
cannam@3
|
295 if (!adapter) return 0;
|
cannam@3
|
296 return adapter->getOutputDescriptor((Plugin *)handle, i);
|
cannam@3
|
297 }
|
cannam@3
|
298
|
cannam@3
|
299 void
|
cannam@3
|
300 PluginAdapterBase::vampReleaseOutputDescriptor(VampOutputDescriptor *desc)
|
cannam@3
|
301 {
|
cannam@3
|
302 if (desc->name) free((void *)desc->name);
|
cannam@3
|
303 if (desc->description) free((void *)desc->description);
|
cannam@3
|
304 if (desc->unit) free((void *)desc->unit);
|
cannam@9
|
305 for (unsigned int i = 0; i < desc->binCount; ++i) {
|
cannam@9
|
306 free((void *)desc->binNames[i]);
|
cannam@3
|
307 }
|
cannam@9
|
308 if (desc->binNames) free((void *)desc->binNames);
|
cannam@3
|
309 free((void *)desc);
|
cannam@3
|
310 }
|
cannam@3
|
311
|
cannam@12
|
312 VampFeatureList *
|
cannam@3
|
313 PluginAdapterBase::vampProcess(VampPluginHandle handle,
|
cannam@3
|
314 float **inputBuffers,
|
cannam@3
|
315 int sec,
|
cannam@3
|
316 int nsec)
|
cannam@3
|
317 {
|
cannam@3
|
318 PluginAdapterBase *adapter = lookupAdapter(handle);
|
cannam@3
|
319 if (!adapter) return 0;
|
cannam@3
|
320 return adapter->process((Plugin *)handle,
|
cannam@3
|
321 inputBuffers, sec, nsec);
|
cannam@3
|
322 }
|
cannam@3
|
323
|
cannam@12
|
324 VampFeatureList *
|
cannam@3
|
325 PluginAdapterBase::vampGetRemainingFeatures(VampPluginHandle handle)
|
cannam@3
|
326 {
|
cannam@3
|
327 PluginAdapterBase *adapter = lookupAdapter(handle);
|
cannam@3
|
328 if (!adapter) return 0;
|
cannam@3
|
329 return adapter->getRemainingFeatures((Plugin *)handle);
|
cannam@3
|
330 }
|
cannam@3
|
331
|
cannam@3
|
332 void
|
cannam@12
|
333 PluginAdapterBase::vampReleaseFeatureSet(VampFeatureList *fs)
|
cannam@3
|
334 {
|
cannam@3
|
335 }
|
cannam@3
|
336
|
cannam@3
|
337 void
|
cannam@3
|
338 PluginAdapterBase::cleanup(Plugin *plugin)
|
cannam@3
|
339 {
|
cannam@12
|
340 if (m_fs.find(plugin) != m_fs.end()) {
|
cannam@12
|
341 size_t outputCount = 0;
|
cannam@12
|
342 if (m_pluginOutputs[plugin]) {
|
cannam@12
|
343 outputCount = m_pluginOutputs[plugin]->size();
|
cannam@12
|
344 }
|
cannam@12
|
345 VampFeatureList *list = m_fs[plugin];
|
cannam@12
|
346 for (unsigned int i = 0; i < outputCount; ++i) {
|
cannam@12
|
347 for (unsigned int j = 0; j < m_fsizes[plugin][i]; ++j) {
|
cannam@12
|
348 if (list[i].features[j].label) {
|
cannam@12
|
349 free(list[i].features[j].label);
|
cannam@12
|
350 }
|
cannam@12
|
351 if (list[i].features[j].values) {
|
cannam@12
|
352 free(list[i].features[j].values);
|
cannam@12
|
353 }
|
cannam@12
|
354 }
|
cannam@12
|
355 if (list[i].features) free(list[i].features);
|
cannam@12
|
356 }
|
cannam@12
|
357 m_fs.erase(plugin);
|
cannam@12
|
358 m_fsizes.erase(plugin);
|
cannam@12
|
359 m_fvsizes.erase(plugin);
|
cannam@12
|
360 }
|
cannam@12
|
361
|
cannam@3
|
362 if (m_pluginOutputs.find(plugin) != m_pluginOutputs.end()) {
|
cannam@3
|
363 delete m_pluginOutputs[plugin];
|
cannam@3
|
364 m_pluginOutputs.erase(plugin);
|
cannam@3
|
365 }
|
cannam@3
|
366 m_adapterMap.erase(plugin);
|
cannam@3
|
367 delete ((Plugin *)plugin);
|
cannam@3
|
368 }
|
cannam@3
|
369
|
cannam@3
|
370 void
|
cannam@3
|
371 PluginAdapterBase::checkOutputMap(Plugin *plugin)
|
cannam@3
|
372 {
|
cannam@3
|
373 if (!m_pluginOutputs[plugin]) {
|
cannam@3
|
374 m_pluginOutputs[plugin] = new Plugin::OutputList
|
cannam@3
|
375 (plugin->getOutputDescriptors());
|
cannam@3
|
376 }
|
cannam@3
|
377 }
|
cannam@3
|
378
|
cannam@3
|
379 unsigned int
|
cannam@3
|
380 PluginAdapterBase::getOutputCount(Plugin *plugin)
|
cannam@3
|
381 {
|
cannam@3
|
382 checkOutputMap(plugin);
|
cannam@3
|
383 return m_pluginOutputs[plugin]->size();
|
cannam@3
|
384 }
|
cannam@3
|
385
|
cannam@3
|
386 VampOutputDescriptor *
|
cannam@3
|
387 PluginAdapterBase::getOutputDescriptor(Plugin *plugin,
|
cannam@3
|
388 unsigned int i)
|
cannam@3
|
389 {
|
cannam@3
|
390 checkOutputMap(plugin);
|
cannam@3
|
391 Plugin::OutputDescriptor &od =
|
cannam@3
|
392 (*m_pluginOutputs[plugin])[i];
|
cannam@3
|
393
|
cannam@3
|
394 VampOutputDescriptor *desc = (VampOutputDescriptor *)
|
cannam@3
|
395 malloc(sizeof(VampOutputDescriptor));
|
cannam@3
|
396
|
cannam@3
|
397 desc->name = strdup(od.name.c_str());
|
cannam@3
|
398 desc->description = strdup(od.description.c_str());
|
cannam@3
|
399 desc->unit = strdup(od.unit.c_str());
|
cannam@9
|
400 desc->hasFixedBinCount = od.hasFixedBinCount;
|
cannam@9
|
401 desc->binCount = od.binCount;
|
cannam@3
|
402
|
cannam@9
|
403 if (od.hasFixedBinCount && od.binCount > 0) {
|
cannam@9
|
404 desc->binNames = (const char **)
|
cannam@9
|
405 malloc(od.binCount * sizeof(const char *));
|
cannam@3
|
406
|
cannam@9
|
407 for (unsigned int i = 0; i < od.binCount; ++i) {
|
cannam@9
|
408 if (i < od.binNames.size()) {
|
cannam@9
|
409 desc->binNames[i] = strdup(od.binNames[i].c_str());
|
cannam@7
|
410 } else {
|
cannam@9
|
411 desc->binNames[i] = 0;
|
cannam@7
|
412 }
|
cannam@3
|
413 }
|
cannam@7
|
414 } else {
|
cannam@9
|
415 desc->binNames = 0;
|
cannam@3
|
416 }
|
cannam@3
|
417
|
cannam@3
|
418 desc->hasKnownExtents = od.hasKnownExtents;
|
cannam@3
|
419 desc->minValue = od.minValue;
|
cannam@3
|
420 desc->maxValue = od.maxValue;
|
cannam@3
|
421 desc->isQuantized = od.isQuantized;
|
cannam@3
|
422 desc->quantizeStep = od.quantizeStep;
|
cannam@3
|
423
|
cannam@3
|
424 switch (od.sampleType) {
|
cannam@3
|
425 case Plugin::OutputDescriptor::OneSamplePerStep:
|
cannam@3
|
426 desc->sampleType = vampOneSamplePerStep; break;
|
cannam@3
|
427 case Plugin::OutputDescriptor::FixedSampleRate:
|
cannam@3
|
428 desc->sampleType = vampFixedSampleRate; break;
|
cannam@3
|
429 case Plugin::OutputDescriptor::VariableSampleRate:
|
cannam@3
|
430 desc->sampleType = vampVariableSampleRate; break;
|
cannam@3
|
431 }
|
cannam@3
|
432
|
cannam@3
|
433 desc->sampleRate = od.sampleRate;
|
cannam@3
|
434
|
cannam@3
|
435 return desc;
|
cannam@3
|
436 }
|
cannam@3
|
437
|
cannam@12
|
438 VampFeatureList *
|
cannam@3
|
439 PluginAdapterBase::process(Plugin *plugin,
|
cannam@3
|
440 float **inputBuffers,
|
cannam@3
|
441 int sec, int nsec)
|
cannam@3
|
442 {
|
cannam@12
|
443 // std::cerr << "PluginAdapterBase::process" << std::endl;
|
cannam@3
|
444 RealTime rt(sec, nsec);
|
cannam@12
|
445 checkOutputMap(plugin);
|
cannam@12
|
446 return convertFeatures(plugin, plugin->process(inputBuffers, rt));
|
cannam@3
|
447 }
|
cannam@3
|
448
|
cannam@12
|
449 VampFeatureList *
|
cannam@3
|
450 PluginAdapterBase::getRemainingFeatures(Plugin *plugin)
|
cannam@3
|
451 {
|
cannam@12
|
452 // std::cerr << "PluginAdapterBase::getRemainingFeatures" << std::endl;
|
cannam@12
|
453 checkOutputMap(plugin);
|
cannam@12
|
454 return convertFeatures(plugin, plugin->getRemainingFeatures());
|
cannam@3
|
455 }
|
cannam@3
|
456
|
cannam@12
|
457 VampFeatureList *
|
cannam@12
|
458 PluginAdapterBase::convertFeatures(Plugin *plugin,
|
cannam@12
|
459 const Plugin::FeatureSet &features)
|
cannam@3
|
460 {
|
cannam@12
|
461 int lastN = -1;
|
cannam@3
|
462
|
cannam@12
|
463 int outputCount = 0;
|
cannam@12
|
464 if (m_pluginOutputs[plugin]) outputCount = m_pluginOutputs[plugin]->size();
|
cannam@12
|
465
|
cannam@12
|
466 resizeFS(plugin, outputCount);
|
cannam@12
|
467 VampFeatureList *fs = m_fs[plugin];
|
cannam@3
|
468
|
cannam@12
|
469 for (Plugin::FeatureSet::const_iterator fi = features.begin();
|
cannam@12
|
470 fi != features.end(); ++fi) {
|
cannam@3
|
471
|
cannam@12
|
472 int n = fi->first;
|
cannam@12
|
473
|
cannam@12
|
474 // std::cerr << "PluginAdapterBase::convertFeatures: n = " << n << std::endl;
|
cannam@7
|
475
|
cannam@12
|
476 if (n >= int(outputCount)) {
|
cannam@12
|
477 std::cerr << "WARNING: PluginAdapterBase::convertFeatures: Too many outputs from plugin (" << n+1 << ", only should be " << outputCount << ")" << std::endl;
|
cannam@7
|
478 continue;
|
cannam@7
|
479 }
|
cannam@7
|
480
|
cannam@12
|
481 if (n > lastN + 1) {
|
cannam@12
|
482 for (int i = lastN + 1; i < n; ++i) {
|
cannam@12
|
483 fs[i].featureCount = 0;
|
cannam@12
|
484 }
|
cannam@12
|
485 }
|
cannam@7
|
486
|
cannam@7
|
487 const Plugin::FeatureList &fl = fi->second;
|
cannam@7
|
488
|
cannam@12
|
489 size_t sz = fl.size();
|
cannam@12
|
490 if (sz > m_fsizes[plugin][n]) resizeFL(plugin, n, sz);
|
cannam@12
|
491 fs[n].featureCount = sz;
|
cannam@12
|
492
|
cannam@12
|
493 for (size_t j = 0; j < sz; ++j) {
|
cannam@7
|
494
|
cannam@12
|
495 // std::cerr << "PluginAdapterBase::convertFeatures: j = " << j << std::endl;
|
cannam@7
|
496
|
cannam@12
|
497 VampFeature *feature = &fs[n].features[j];
|
cannam@7
|
498
|
cannam@7
|
499 feature->hasTimestamp = fl[j].hasTimestamp;
|
cannam@7
|
500 feature->sec = fl[j].timestamp.sec;
|
cannam@7
|
501 feature->nsec = fl[j].timestamp.nsec;
|
cannam@7
|
502 feature->valueCount = fl[j].values.size();
|
cannam@7
|
503
|
cannam@12
|
504 if (feature->label) free(feature->label);
|
cannam@12
|
505
|
cannam@12
|
506 if (fl[j].label.empty()) {
|
cannam@12
|
507 feature->label = 0;
|
cannam@12
|
508 } else {
|
cannam@12
|
509 feature->label = strdup(fl[j].label.c_str());
|
cannam@7
|
510 }
|
cannam@7
|
511
|
cannam@12
|
512 if (feature->valueCount > m_fvsizes[plugin][n][j]) {
|
cannam@12
|
513 resizeFV(plugin, n, j, feature->valueCount);
|
cannam@12
|
514 }
|
cannam@7
|
515
|
cannam@7
|
516 for (unsigned int k = 0; k < feature->valueCount; ++k) {
|
cannam@12
|
517 // std::cerr << "PluginAdapterBase::convertFeatures: k = " << k << std::endl;
|
cannam@7
|
518 feature->values[k] = fl[j].values[k];
|
cannam@3
|
519 }
|
cannam@3
|
520 }
|
cannam@12
|
521
|
cannam@12
|
522 lastN = n;
|
cannam@3
|
523 }
|
cannam@3
|
524
|
cannam@12
|
525 if (lastN == -1) return 0;
|
cannam@12
|
526
|
cannam@12
|
527 if (int(outputCount) > lastN + 1) {
|
cannam@12
|
528 for (int i = lastN + 1; i < int(outputCount); ++i) {
|
cannam@12
|
529 fs[i].featureCount = 0;
|
cannam@12
|
530 }
|
cannam@12
|
531 }
|
cannam@3
|
532
|
cannam@3
|
533 return fs;
|
cannam@3
|
534 }
|
cannam@3
|
535
|
cannam@12
|
536 void
|
cannam@12
|
537 PluginAdapterBase::resizeFS(Plugin *plugin, int n)
|
cannam@12
|
538 {
|
cannam@12
|
539 // std::cerr << "PluginAdapterBase::resizeFS(" << plugin << ", " << n << ")" << std::endl;
|
cannam@12
|
540
|
cannam@12
|
541 int i = m_fsizes[plugin].size();
|
cannam@12
|
542 if (i >= n) return;
|
cannam@12
|
543
|
cannam@12
|
544 std::cerr << "resizing from " << i << std::endl;
|
cannam@12
|
545
|
cannam@12
|
546 m_fs[plugin] = (VampFeatureList *)realloc
|
cannam@12
|
547 (m_fs[plugin], n * sizeof(VampFeatureList));
|
cannam@12
|
548
|
cannam@12
|
549 while (i < n) {
|
cannam@12
|
550 m_fs[plugin][i].featureCount = 0;
|
cannam@12
|
551 m_fs[plugin][i].features = 0;
|
cannam@12
|
552 m_fsizes[plugin].push_back(0);
|
cannam@12
|
553 m_fvsizes[plugin].push_back(std::vector<size_t>());
|
cannam@12
|
554 i++;
|
cannam@12
|
555 }
|
cannam@12
|
556 }
|
cannam@12
|
557
|
cannam@12
|
558 void
|
cannam@12
|
559 PluginAdapterBase::resizeFL(Plugin *plugin, int n, size_t sz)
|
cannam@12
|
560 {
|
cannam@12
|
561 std::cerr << "PluginAdapterBase::resizeFL(" << plugin << ", " << n << ", "
|
cannam@12
|
562 << sz << ")" << std::endl;
|
cannam@12
|
563
|
cannam@12
|
564 size_t i = m_fsizes[plugin][n];
|
cannam@12
|
565 if (i >= sz) return;
|
cannam@12
|
566
|
cannam@12
|
567 std::cerr << "resizing from " << i << std::endl;
|
cannam@12
|
568
|
cannam@12
|
569 m_fs[plugin][n].features = (VampFeature *)realloc
|
cannam@12
|
570 (m_fs[plugin][n].features, sz * sizeof(VampFeature));
|
cannam@12
|
571
|
cannam@12
|
572 while (m_fsizes[plugin][n] < sz) {
|
cannam@12
|
573 m_fs[plugin][n].features[m_fsizes[plugin][n]].valueCount = 0;
|
cannam@12
|
574 m_fs[plugin][n].features[m_fsizes[plugin][n]].values = 0;
|
cannam@12
|
575 m_fs[plugin][n].features[m_fsizes[plugin][n]].label = 0;
|
cannam@12
|
576 m_fvsizes[plugin][n].push_back(0);
|
cannam@12
|
577 m_fsizes[plugin][n]++;
|
cannam@12
|
578 }
|
cannam@12
|
579 }
|
cannam@12
|
580
|
cannam@12
|
581 void
|
cannam@12
|
582 PluginAdapterBase::resizeFV(Plugin *plugin, int n, int j, size_t sz)
|
cannam@12
|
583 {
|
cannam@12
|
584
|
cannam@12
|
585 std::cerr << "PluginAdapterBase::resizeFV(" << plugin << ", " << n << ", "
|
cannam@12
|
586 << j << ", " << sz << ")" << std::endl;
|
cannam@12
|
587
|
cannam@12
|
588 size_t i = m_fvsizes[plugin][n][j];
|
cannam@12
|
589 if (i >= sz) return;
|
cannam@12
|
590
|
cannam@12
|
591 std::cerr << "resizing from " << i << std::endl;
|
cannam@12
|
592
|
cannam@12
|
593 m_fs[plugin][n].features[j].values = (float *)realloc
|
cannam@12
|
594 (m_fs[plugin][n].features[j].values, sz * sizeof(float));
|
cannam@12
|
595
|
cannam@12
|
596 m_fvsizes[plugin][n][j] = sz;
|
cannam@12
|
597 }
|
cannam@12
|
598
|
cannam@3
|
599 PluginAdapterBase::AdapterMap
|
cannam@3
|
600 PluginAdapterBase::m_adapterMap;
|
cannam@3
|
601
|
cannam@3
|
602 }
|
cannam@3
|
603
|