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@3
|
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@3
|
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@3
|
333 PluginAdapterBase::vampReleaseFeatureSet(VampFeatureList **fs)
|
cannam@3
|
334 {
|
cannam@3
|
335 if (!fs) return;
|
cannam@7
|
336
|
cannam@3
|
337 for (unsigned int i = 0; fs[i]; ++i) {
|
cannam@7
|
338
|
cannam@3
|
339 for (unsigned int j = 0; j < fs[i]->featureCount; ++j) {
|
cannam@3
|
340 VampFeature *feature = &fs[i]->features[j];
|
cannam@3
|
341 if (feature->values) free((void *)feature->values);
|
cannam@3
|
342 if (feature->label) free((void *)feature->label);
|
cannam@3
|
343 }
|
cannam@7
|
344
|
cannam@3
|
345 if (fs[i]->features) free((void *)fs[i]->features);
|
cannam@3
|
346 free((void *)fs[i]);
|
cannam@3
|
347 }
|
cannam@7
|
348
|
cannam@3
|
349 free((void *)fs);
|
cannam@3
|
350 }
|
cannam@3
|
351
|
cannam@3
|
352 void
|
cannam@3
|
353 PluginAdapterBase::cleanup(Plugin *plugin)
|
cannam@3
|
354 {
|
cannam@3
|
355 if (m_pluginOutputs.find(plugin) != m_pluginOutputs.end()) {
|
cannam@3
|
356 delete m_pluginOutputs[plugin];
|
cannam@3
|
357 m_pluginOutputs.erase(plugin);
|
cannam@3
|
358 }
|
cannam@3
|
359 m_adapterMap.erase(plugin);
|
cannam@3
|
360 delete ((Plugin *)plugin);
|
cannam@3
|
361 }
|
cannam@3
|
362
|
cannam@3
|
363 void
|
cannam@3
|
364 PluginAdapterBase::checkOutputMap(Plugin *plugin)
|
cannam@3
|
365 {
|
cannam@3
|
366 if (!m_pluginOutputs[plugin]) {
|
cannam@3
|
367 m_pluginOutputs[plugin] = new Plugin::OutputList
|
cannam@3
|
368 (plugin->getOutputDescriptors());
|
cannam@3
|
369 }
|
cannam@3
|
370 }
|
cannam@3
|
371
|
cannam@3
|
372 unsigned int
|
cannam@3
|
373 PluginAdapterBase::getOutputCount(Plugin *plugin)
|
cannam@3
|
374 {
|
cannam@3
|
375 checkOutputMap(plugin);
|
cannam@3
|
376 return m_pluginOutputs[plugin]->size();
|
cannam@3
|
377 }
|
cannam@3
|
378
|
cannam@3
|
379 VampOutputDescriptor *
|
cannam@3
|
380 PluginAdapterBase::getOutputDescriptor(Plugin *plugin,
|
cannam@3
|
381 unsigned int i)
|
cannam@3
|
382 {
|
cannam@3
|
383 checkOutputMap(plugin);
|
cannam@3
|
384 Plugin::OutputDescriptor &od =
|
cannam@3
|
385 (*m_pluginOutputs[plugin])[i];
|
cannam@3
|
386
|
cannam@3
|
387 VampOutputDescriptor *desc = (VampOutputDescriptor *)
|
cannam@3
|
388 malloc(sizeof(VampOutputDescriptor));
|
cannam@3
|
389
|
cannam@3
|
390 desc->name = strdup(od.name.c_str());
|
cannam@3
|
391 desc->description = strdup(od.description.c_str());
|
cannam@3
|
392 desc->unit = strdup(od.unit.c_str());
|
cannam@9
|
393 desc->hasFixedBinCount = od.hasFixedBinCount;
|
cannam@9
|
394 desc->binCount = od.binCount;
|
cannam@3
|
395
|
cannam@9
|
396 if (od.hasFixedBinCount && od.binCount > 0) {
|
cannam@9
|
397 desc->binNames = (const char **)
|
cannam@9
|
398 malloc(od.binCount * sizeof(const char *));
|
cannam@3
|
399
|
cannam@9
|
400 for (unsigned int i = 0; i < od.binCount; ++i) {
|
cannam@9
|
401 if (i < od.binNames.size()) {
|
cannam@9
|
402 desc->binNames[i] = strdup(od.binNames[i].c_str());
|
cannam@7
|
403 } else {
|
cannam@9
|
404 desc->binNames[i] = 0;
|
cannam@7
|
405 }
|
cannam@3
|
406 }
|
cannam@7
|
407 } else {
|
cannam@9
|
408 desc->binNames = 0;
|
cannam@3
|
409 }
|
cannam@3
|
410
|
cannam@3
|
411 desc->hasKnownExtents = od.hasKnownExtents;
|
cannam@3
|
412 desc->minValue = od.minValue;
|
cannam@3
|
413 desc->maxValue = od.maxValue;
|
cannam@3
|
414 desc->isQuantized = od.isQuantized;
|
cannam@3
|
415 desc->quantizeStep = od.quantizeStep;
|
cannam@3
|
416
|
cannam@3
|
417 switch (od.sampleType) {
|
cannam@3
|
418 case Plugin::OutputDescriptor::OneSamplePerStep:
|
cannam@3
|
419 desc->sampleType = vampOneSamplePerStep; break;
|
cannam@3
|
420 case Plugin::OutputDescriptor::FixedSampleRate:
|
cannam@3
|
421 desc->sampleType = vampFixedSampleRate; break;
|
cannam@3
|
422 case Plugin::OutputDescriptor::VariableSampleRate:
|
cannam@3
|
423 desc->sampleType = vampVariableSampleRate; break;
|
cannam@3
|
424 }
|
cannam@3
|
425
|
cannam@3
|
426 desc->sampleRate = od.sampleRate;
|
cannam@3
|
427
|
cannam@3
|
428 return desc;
|
cannam@3
|
429 }
|
cannam@3
|
430
|
cannam@3
|
431 VampFeatureList **
|
cannam@3
|
432 PluginAdapterBase::process(Plugin *plugin,
|
cannam@3
|
433 float **inputBuffers,
|
cannam@3
|
434 int sec, int nsec)
|
cannam@3
|
435 {
|
cannam@3
|
436 RealTime rt(sec, nsec);
|
cannam@3
|
437 return convertFeatures(plugin->process(inputBuffers, rt));
|
cannam@3
|
438 }
|
cannam@3
|
439
|
cannam@3
|
440 VampFeatureList **
|
cannam@3
|
441 PluginAdapterBase::getRemainingFeatures(Plugin *plugin)
|
cannam@3
|
442 {
|
cannam@3
|
443 return convertFeatures(plugin->getRemainingFeatures());
|
cannam@3
|
444 }
|
cannam@3
|
445
|
cannam@3
|
446 VampFeatureList **
|
cannam@3
|
447 PluginAdapterBase::convertFeatures(const Plugin::FeatureSet &features)
|
cannam@3
|
448 {
|
cannam@3
|
449 unsigned int n = 0;
|
cannam@3
|
450 if (features.begin() != features.end()) {
|
cannam@3
|
451 Plugin::FeatureSet::const_iterator i = features.end();
|
cannam@3
|
452 --i;
|
cannam@3
|
453 n = i->first + 1;
|
cannam@3
|
454 }
|
cannam@3
|
455
|
cannam@3
|
456 if (!n) return 0;
|
cannam@3
|
457
|
cannam@3
|
458 VampFeatureList **fs = (VampFeatureList **)
|
cannam@3
|
459 malloc((n + 1) * sizeof(VampFeatureList *));
|
cannam@3
|
460
|
cannam@3
|
461 for (unsigned int i = 0; i < n; ++i) {
|
cannam@7
|
462
|
cannam@3
|
463 fs[i] = (VampFeatureList *)malloc(sizeof(VampFeatureList));
|
cannam@7
|
464
|
cannam@3
|
465 if (features.find(i) == features.end()) {
|
cannam@7
|
466
|
cannam@3
|
467 fs[i]->featureCount = 0;
|
cannam@3
|
468 fs[i]->features = 0;
|
cannam@7
|
469 continue;
|
cannam@7
|
470 }
|
cannam@7
|
471
|
cannam@7
|
472 Plugin::FeatureSet::const_iterator fi = features.find(i);
|
cannam@7
|
473
|
cannam@7
|
474 const Plugin::FeatureList &fl = fi->second;
|
cannam@7
|
475
|
cannam@7
|
476 fs[i]->featureCount = fl.size();
|
cannam@7
|
477
|
cannam@7
|
478 if (fs[i]->featureCount == 0) {
|
cannam@7
|
479 fs[i]->features = 0;
|
cannam@7
|
480 continue;
|
cannam@7
|
481 }
|
cannam@7
|
482
|
cannam@7
|
483 fs[i]->features = (VampFeature *)malloc(fl.size() * sizeof(VampFeature));
|
cannam@7
|
484
|
cannam@7
|
485 for (unsigned int j = 0; j < fl.size(); ++j) {
|
cannam@7
|
486
|
cannam@7
|
487 VampFeature *feature = &fs[i]->features[j];
|
cannam@7
|
488
|
cannam@7
|
489 feature->hasTimestamp = fl[j].hasTimestamp;
|
cannam@7
|
490 feature->sec = fl[j].timestamp.sec;
|
cannam@7
|
491 feature->nsec = fl[j].timestamp.nsec;
|
cannam@7
|
492 feature->valueCount = fl[j].values.size();
|
cannam@7
|
493 feature->label = strdup(fl[j].label.c_str());
|
cannam@7
|
494
|
cannam@7
|
495 if (feature->valueCount == 0) {
|
cannam@7
|
496 feature->values = 0;
|
cannam@7
|
497 continue;
|
cannam@7
|
498 }
|
cannam@7
|
499
|
cannam@7
|
500 feature->values = (float *)malloc
|
cannam@7
|
501 (feature->valueCount * sizeof(float));
|
cannam@7
|
502
|
cannam@7
|
503 for (unsigned int k = 0; k < feature->valueCount; ++k) {
|
cannam@7
|
504 feature->values[k] = fl[j].values[k];
|
cannam@3
|
505 }
|
cannam@3
|
506 }
|
cannam@3
|
507 }
|
cannam@3
|
508
|
cannam@3
|
509 fs[n] = 0;
|
cannam@3
|
510
|
cannam@3
|
511 return fs;
|
cannam@3
|
512 }
|
cannam@3
|
513
|
cannam@3
|
514 PluginAdapterBase::AdapterMap
|
cannam@3
|
515 PluginAdapterBase::m_adapterMap;
|
cannam@3
|
516
|
cannam@3
|
517 }
|
cannam@3
|
518
|