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@130
|
39 #include <cstring>
|
cannam@130
|
40 #include <cstdlib>
|
cannam@130
|
41
|
cannam@23
|
42 //#define DEBUG_PLUGIN_ADAPTER 1
|
cannam@22
|
43
|
cannam@3
|
44 namespace Vamp {
|
cannam@3
|
45
|
cannam@76
|
46 class PluginAdapterBase::Impl
|
cannam@3
|
47 {
|
cannam@76
|
48 public:
|
cannam@76
|
49 Impl(PluginAdapterBase *);
|
cannam@76
|
50 ~Impl();
|
cannam@76
|
51
|
cannam@76
|
52 const VampPluginDescriptor *getDescriptor();
|
cannam@76
|
53
|
cannam@76
|
54 protected:
|
cannam@76
|
55 PluginAdapterBase *m_base;
|
cannam@76
|
56
|
cannam@76
|
57 static VampPluginHandle vampInstantiate(const VampPluginDescriptor *desc,
|
cannam@167
|
58 float inputSampleRate);
|
cannam@76
|
59
|
cannam@76
|
60 static void vampCleanup(VampPluginHandle handle);
|
cannam@76
|
61
|
cannam@76
|
62 static int vampInitialise(VampPluginHandle handle, unsigned int channels,
|
cannam@76
|
63 unsigned int stepSize, unsigned int blockSize);
|
cannam@76
|
64
|
cannam@76
|
65 static void vampReset(VampPluginHandle handle);
|
cannam@76
|
66
|
cannam@76
|
67 static float vampGetParameter(VampPluginHandle handle, int param);
|
cannam@76
|
68 static void vampSetParameter(VampPluginHandle handle, int param, float value);
|
cannam@76
|
69
|
cannam@76
|
70 static unsigned int vampGetCurrentProgram(VampPluginHandle handle);
|
cannam@76
|
71 static void vampSelectProgram(VampPluginHandle handle, unsigned int program);
|
cannam@76
|
72
|
cannam@76
|
73 static unsigned int vampGetPreferredStepSize(VampPluginHandle handle);
|
cannam@76
|
74 static unsigned int vampGetPreferredBlockSize(VampPluginHandle handle);
|
cannam@76
|
75 static unsigned int vampGetMinChannelCount(VampPluginHandle handle);
|
cannam@76
|
76 static unsigned int vampGetMaxChannelCount(VampPluginHandle handle);
|
cannam@76
|
77
|
cannam@76
|
78 static unsigned int vampGetOutputCount(VampPluginHandle handle);
|
cannam@76
|
79
|
cannam@76
|
80 static VampOutputDescriptor *vampGetOutputDescriptor(VampPluginHandle handle,
|
cannam@76
|
81 unsigned int i);
|
cannam@76
|
82
|
cannam@76
|
83 static void vampReleaseOutputDescriptor(VampOutputDescriptor *desc);
|
cannam@76
|
84
|
cannam@76
|
85 static VampFeatureList *vampProcess(VampPluginHandle handle,
|
cannam@76
|
86 const float *const *inputBuffers,
|
cannam@76
|
87 int sec,
|
cannam@76
|
88 int nsec);
|
cannam@76
|
89
|
cannam@76
|
90 static VampFeatureList *vampGetRemainingFeatures(VampPluginHandle handle);
|
cannam@76
|
91
|
cannam@76
|
92 static void vampReleaseFeatureSet(VampFeatureList *fs);
|
cannam@76
|
93
|
cannam@76
|
94 void cleanup(Plugin *plugin);
|
cannam@76
|
95 void checkOutputMap(Plugin *plugin);
|
cannam@76
|
96 unsigned int getOutputCount(Plugin *plugin);
|
cannam@76
|
97 VampOutputDescriptor *getOutputDescriptor(Plugin *plugin,
|
cannam@76
|
98 unsigned int i);
|
cannam@76
|
99 VampFeatureList *process(Plugin *plugin,
|
cannam@76
|
100 const float *const *inputBuffers,
|
cannam@76
|
101 int sec, int nsec);
|
cannam@76
|
102 VampFeatureList *getRemainingFeatures(Plugin *plugin);
|
cannam@76
|
103 VampFeatureList *convertFeatures(Plugin *plugin,
|
cannam@76
|
104 const Plugin::FeatureSet &features);
|
cannam@76
|
105
|
cannam@76
|
106 // maps both plugins and descriptors to adapters
|
cannam@76
|
107 typedef std::map<const void *, Impl *> AdapterMap;
|
cannam@76
|
108 static AdapterMap *m_adapterMap;
|
cannam@76
|
109 static Impl *lookupAdapter(VampPluginHandle);
|
cannam@76
|
110
|
cannam@76
|
111 bool m_populated;
|
cannam@76
|
112 VampPluginDescriptor m_descriptor;
|
cannam@76
|
113 Plugin::ParameterList m_parameters;
|
cannam@76
|
114 Plugin::ProgramList m_programs;
|
cannam@76
|
115
|
cannam@76
|
116 typedef std::map<Plugin *, Plugin::OutputList *> OutputMap;
|
cannam@76
|
117 OutputMap m_pluginOutputs;
|
cannam@76
|
118
|
cannam@76
|
119 std::map<Plugin *, VampFeatureList *> m_fs;
|
cannam@76
|
120 std::map<Plugin *, std::vector<size_t> > m_fsizes;
|
cannam@76
|
121 std::map<Plugin *, std::vector<std::vector<size_t> > > m_fvsizes;
|
cannam@76
|
122 void resizeFS(Plugin *plugin, int n);
|
cannam@76
|
123 void resizeFL(Plugin *plugin, int n, size_t sz);
|
cannam@76
|
124 void resizeFV(Plugin *plugin, int n, int j, size_t sz);
|
cannam@76
|
125 };
|
cannam@76
|
126
|
cannam@76
|
127 PluginAdapterBase::PluginAdapterBase()
|
cannam@76
|
128 {
|
cannam@76
|
129 m_impl = new Impl(this);
|
cannam@76
|
130 }
|
cannam@76
|
131
|
cannam@76
|
132 PluginAdapterBase::~PluginAdapterBase()
|
cannam@76
|
133 {
|
cannam@76
|
134 delete m_impl;
|
cannam@3
|
135 }
|
cannam@3
|
136
|
cannam@3
|
137 const VampPluginDescriptor *
|
cannam@3
|
138 PluginAdapterBase::getDescriptor()
|
cannam@3
|
139 {
|
cannam@76
|
140 return m_impl->getDescriptor();
|
cannam@76
|
141 }
|
cannam@76
|
142
|
cannam@76
|
143 PluginAdapterBase::Impl::Impl(PluginAdapterBase *base) :
|
cannam@76
|
144 m_base(base),
|
cannam@76
|
145 m_populated(false)
|
cannam@76
|
146 {
|
cannam@22
|
147 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
148 std::cerr << "PluginAdapterBase::Impl[" << this << "]::Impl" << std::endl;
|
cannam@76
|
149 #endif
|
cannam@76
|
150 }
|
cannam@76
|
151
|
cannam@76
|
152 const VampPluginDescriptor *
|
cannam@76
|
153 PluginAdapterBase::Impl::getDescriptor()
|
cannam@76
|
154 {
|
cannam@76
|
155 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
156 std::cerr << "PluginAdapterBase::Impl[" << this << "]::getDescriptor" << std::endl;
|
cannam@22
|
157 #endif
|
cannam@22
|
158
|
cannam@3
|
159 if (m_populated) return &m_descriptor;
|
cannam@3
|
160
|
cannam@76
|
161 Plugin *plugin = m_base->createPlugin(48000);
|
cannam@3
|
162
|
cannam@50
|
163 if (plugin->getVampApiVersion() != VAMP_API_VERSION) {
|
cannam@76
|
164 std::cerr << "Vamp::PluginAdapterBase::Impl::getDescriptor: ERROR: "
|
cannam@50
|
165 << "Plugin object API version "
|
cannam@50
|
166 << plugin->getVampApiVersion()
|
cannam@50
|
167 << " does not match actual API version "
|
cannam@50
|
168 << VAMP_API_VERSION << std::endl;
|
cannam@192
|
169 std::cerr << "(Plugin identifier is: "
|
cannam@192
|
170 << plugin->getIdentifier() << ")" << std::endl;
|
cannam@50
|
171 delete plugin;
|
cannam@50
|
172 return 0;
|
cannam@50
|
173 }
|
cannam@50
|
174
|
cannam@3
|
175 m_parameters = plugin->getParameterDescriptors();
|
cannam@3
|
176 m_programs = plugin->getPrograms();
|
cannam@50
|
177
|
cannam@50
|
178 m_descriptor.vampApiVersion = plugin->getVampApiVersion();
|
cannam@49
|
179 m_descriptor.identifier = strdup(plugin->getIdentifier().c_str());
|
cannam@3
|
180 m_descriptor.name = strdup(plugin->getName().c_str());
|
cannam@3
|
181 m_descriptor.description = strdup(plugin->getDescription().c_str());
|
cannam@3
|
182 m_descriptor.maker = strdup(plugin->getMaker().c_str());
|
cannam@3
|
183 m_descriptor.pluginVersion = plugin->getPluginVersion();
|
cannam@3
|
184 m_descriptor.copyright = strdup(plugin->getCopyright().c_str());
|
cannam@3
|
185
|
cannam@3
|
186 m_descriptor.parameterCount = m_parameters.size();
|
cannam@3
|
187 m_descriptor.parameters = (const VampParameterDescriptor **)
|
cannam@3
|
188 malloc(m_parameters.size() * sizeof(VampParameterDescriptor));
|
cannam@7
|
189
|
cannam@7
|
190 unsigned int i;
|
cannam@3
|
191
|
cannam@7
|
192 for (i = 0; i < m_parameters.size(); ++i) {
|
cannam@3
|
193 VampParameterDescriptor *desc = (VampParameterDescriptor *)
|
cannam@3
|
194 malloc(sizeof(VampParameterDescriptor));
|
cannam@49
|
195 desc->identifier = strdup(m_parameters[i].identifier.c_str());
|
cannam@3
|
196 desc->name = strdup(m_parameters[i].name.c_str());
|
cannam@3
|
197 desc->description = strdup(m_parameters[i].description.c_str());
|
cannam@3
|
198 desc->unit = strdup(m_parameters[i].unit.c_str());
|
cannam@3
|
199 desc->minValue = m_parameters[i].minValue;
|
cannam@3
|
200 desc->maxValue = m_parameters[i].maxValue;
|
cannam@3
|
201 desc->defaultValue = m_parameters[i].defaultValue;
|
cannam@3
|
202 desc->isQuantized = m_parameters[i].isQuantized;
|
cannam@3
|
203 desc->quantizeStep = m_parameters[i].quantizeStep;
|
cannam@9
|
204 desc->valueNames = 0;
|
cannam@9
|
205 if (desc->isQuantized && !m_parameters[i].valueNames.empty()) {
|
cannam@9
|
206 desc->valueNames = (const char **)
|
cannam@9
|
207 malloc((m_parameters[i].valueNames.size()+1) * sizeof(char *));
|
cannam@9
|
208 for (unsigned int j = 0; j < m_parameters[i].valueNames.size(); ++j) {
|
cannam@9
|
209 desc->valueNames[j] = strdup(m_parameters[i].valueNames[j].c_str());
|
cannam@9
|
210 }
|
cannam@9
|
211 desc->valueNames[m_parameters[i].valueNames.size()] = 0;
|
cannam@9
|
212 }
|
cannam@3
|
213 m_descriptor.parameters[i] = desc;
|
cannam@3
|
214 }
|
cannam@3
|
215
|
cannam@3
|
216 m_descriptor.programCount = m_programs.size();
|
cannam@3
|
217 m_descriptor.programs = (const char **)
|
cannam@3
|
218 malloc(m_programs.size() * sizeof(const char *));
|
cannam@3
|
219
|
cannam@7
|
220 for (i = 0; i < m_programs.size(); ++i) {
|
cannam@3
|
221 m_descriptor.programs[i] = strdup(m_programs[i].c_str());
|
cannam@3
|
222 }
|
cannam@3
|
223
|
cannam@3
|
224 if (plugin->getInputDomain() == Plugin::FrequencyDomain) {
|
cannam@3
|
225 m_descriptor.inputDomain = vampFrequencyDomain;
|
cannam@3
|
226 } else {
|
cannam@3
|
227 m_descriptor.inputDomain = vampTimeDomain;
|
cannam@3
|
228 }
|
cannam@3
|
229
|
cannam@3
|
230 m_descriptor.instantiate = vampInstantiate;
|
cannam@3
|
231 m_descriptor.cleanup = vampCleanup;
|
cannam@3
|
232 m_descriptor.initialise = vampInitialise;
|
cannam@3
|
233 m_descriptor.reset = vampReset;
|
cannam@3
|
234 m_descriptor.getParameter = vampGetParameter;
|
cannam@3
|
235 m_descriptor.setParameter = vampSetParameter;
|
cannam@3
|
236 m_descriptor.getCurrentProgram = vampGetCurrentProgram;
|
cannam@3
|
237 m_descriptor.selectProgram = vampSelectProgram;
|
cannam@3
|
238 m_descriptor.getPreferredStepSize = vampGetPreferredStepSize;
|
cannam@3
|
239 m_descriptor.getPreferredBlockSize = vampGetPreferredBlockSize;
|
cannam@3
|
240 m_descriptor.getMinChannelCount = vampGetMinChannelCount;
|
cannam@3
|
241 m_descriptor.getMaxChannelCount = vampGetMaxChannelCount;
|
cannam@3
|
242 m_descriptor.getOutputCount = vampGetOutputCount;
|
cannam@3
|
243 m_descriptor.getOutputDescriptor = vampGetOutputDescriptor;
|
cannam@3
|
244 m_descriptor.releaseOutputDescriptor = vampReleaseOutputDescriptor;
|
cannam@3
|
245 m_descriptor.process = vampProcess;
|
cannam@3
|
246 m_descriptor.getRemainingFeatures = vampGetRemainingFeatures;
|
cannam@3
|
247 m_descriptor.releaseFeatureSet = vampReleaseFeatureSet;
|
cannam@3
|
248
|
cannam@13
|
249 if (!m_adapterMap) {
|
cannam@13
|
250 m_adapterMap = new AdapterMap;
|
cannam@13
|
251 }
|
cannam@15
|
252 (*m_adapterMap)[&m_descriptor] = this;
|
cannam@3
|
253
|
cannam@3
|
254 delete plugin;
|
cannam@3
|
255
|
cannam@3
|
256 m_populated = true;
|
cannam@3
|
257 return &m_descriptor;
|
cannam@3
|
258 }
|
cannam@3
|
259
|
cannam@76
|
260 PluginAdapterBase::Impl::~Impl()
|
cannam@3
|
261 {
|
cannam@22
|
262 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
263 std::cerr << "PluginAdapterBase::Impl[" << this << "]::~Impl" << std::endl;
|
cannam@22
|
264 #endif
|
cannam@22
|
265
|
cannam@3
|
266 if (!m_populated) return;
|
cannam@3
|
267
|
cannam@49
|
268 free((void *)m_descriptor.identifier);
|
cannam@3
|
269 free((void *)m_descriptor.name);
|
cannam@3
|
270 free((void *)m_descriptor.description);
|
cannam@3
|
271 free((void *)m_descriptor.maker);
|
cannam@3
|
272 free((void *)m_descriptor.copyright);
|
cannam@3
|
273
|
cannam@3
|
274 for (unsigned int i = 0; i < m_descriptor.parameterCount; ++i) {
|
cannam@3
|
275 const VampParameterDescriptor *desc = m_descriptor.parameters[i];
|
cannam@49
|
276 free((void *)desc->identifier);
|
cannam@3
|
277 free((void *)desc->name);
|
cannam@3
|
278 free((void *)desc->description);
|
cannam@3
|
279 free((void *)desc->unit);
|
cannam@9
|
280 if (desc->valueNames) {
|
cannam@9
|
281 for (unsigned int j = 0; desc->valueNames[j]; ++j) {
|
cannam@9
|
282 free((void *)desc->valueNames[j]);
|
cannam@9
|
283 }
|
cannam@9
|
284 free((void *)desc->valueNames);
|
cannam@9
|
285 }
|
cannam@3
|
286 }
|
cannam@3
|
287 free((void *)m_descriptor.parameters);
|
cannam@3
|
288
|
cannam@3
|
289 for (unsigned int i = 0; i < m_descriptor.programCount; ++i) {
|
cannam@3
|
290 free((void *)m_descriptor.programs[i]);
|
cannam@3
|
291 }
|
cannam@3
|
292 free((void *)m_descriptor.programs);
|
cannam@3
|
293
|
cannam@13
|
294 if (m_adapterMap) {
|
cannam@13
|
295
|
cannam@13
|
296 m_adapterMap->erase(&m_descriptor);
|
cannam@13
|
297
|
cannam@13
|
298 if (m_adapterMap->empty()) {
|
cannam@13
|
299 delete m_adapterMap;
|
cannam@13
|
300 m_adapterMap = 0;
|
cannam@13
|
301 }
|
cannam@13
|
302 }
|
cannam@3
|
303 }
|
cannam@3
|
304
|
cannam@76
|
305 PluginAdapterBase::Impl *
|
cannam@76
|
306 PluginAdapterBase::Impl::lookupAdapter(VampPluginHandle handle)
|
cannam@3
|
307 {
|
cannam@22
|
308 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
309 std::cerr << "PluginAdapterBase::Impl::lookupAdapter(" << handle << ")" << std::endl;
|
cannam@22
|
310 #endif
|
cannam@22
|
311
|
cannam@13
|
312 if (!m_adapterMap) return 0;
|
cannam@13
|
313 AdapterMap::const_iterator i = m_adapterMap->find(handle);
|
cannam@13
|
314 if (i == m_adapterMap->end()) return 0;
|
cannam@3
|
315 return i->second;
|
cannam@3
|
316 }
|
cannam@3
|
317
|
cannam@3
|
318 VampPluginHandle
|
cannam@76
|
319 PluginAdapterBase::Impl::vampInstantiate(const VampPluginDescriptor *desc,
|
cannam@3
|
320 float inputSampleRate)
|
cannam@3
|
321 {
|
cannam@22
|
322 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
323 std::cerr << "PluginAdapterBase::Impl::vampInstantiate(" << desc << ")" << std::endl;
|
cannam@22
|
324 #endif
|
cannam@22
|
325
|
cannam@15
|
326 if (!m_adapterMap) {
|
cannam@15
|
327 m_adapterMap = new AdapterMap();
|
cannam@15
|
328 }
|
cannam@15
|
329
|
cannam@15
|
330 if (m_adapterMap->find(desc) == m_adapterMap->end()) {
|
cannam@76
|
331 std::cerr << "WARNING: PluginAdapterBase::Impl::vampInstantiate: Descriptor " << desc << " not in adapter map" << std::endl;
|
cannam@15
|
332 return 0;
|
cannam@15
|
333 }
|
cannam@15
|
334
|
cannam@76
|
335 Impl *adapter = (*m_adapterMap)[desc];
|
cannam@3
|
336 if (desc != &adapter->m_descriptor) return 0;
|
cannam@3
|
337
|
cannam@76
|
338 Plugin *plugin = adapter->m_base->createPlugin(inputSampleRate);
|
cannam@3
|
339 if (plugin) {
|
cannam@13
|
340 (*m_adapterMap)[plugin] = adapter;
|
cannam@3
|
341 }
|
cannam@3
|
342
|
cannam@22
|
343 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
344 std::cerr << "PluginAdapterBase::Impl::vampInstantiate(" << desc << "): returning handle " << plugin << std::endl;
|
cannam@22
|
345 #endif
|
cannam@22
|
346
|
cannam@3
|
347 return plugin;
|
cannam@3
|
348 }
|
cannam@3
|
349
|
cannam@3
|
350 void
|
cannam@76
|
351 PluginAdapterBase::Impl::vampCleanup(VampPluginHandle handle)
|
cannam@3
|
352 {
|
cannam@22
|
353 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
354 std::cerr << "PluginAdapterBase::Impl::vampCleanup(" << handle << ")" << std::endl;
|
cannam@22
|
355 #endif
|
cannam@22
|
356
|
cannam@76
|
357 Impl *adapter = lookupAdapter(handle);
|
cannam@3
|
358 if (!adapter) {
|
cannam@3
|
359 delete ((Plugin *)handle);
|
cannam@3
|
360 return;
|
cannam@3
|
361 }
|
cannam@3
|
362 adapter->cleanup(((Plugin *)handle));
|
cannam@3
|
363 }
|
cannam@3
|
364
|
cannam@3
|
365 int
|
cannam@76
|
366 PluginAdapterBase::Impl::vampInitialise(VampPluginHandle handle,
|
cannam@3
|
367 unsigned int channels,
|
cannam@3
|
368 unsigned int stepSize,
|
cannam@3
|
369 unsigned int blockSize)
|
cannam@3
|
370 {
|
cannam@22
|
371 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
372 std::cerr << "PluginAdapterBase::Impl::vampInitialise(" << handle << ", " << channels << ", " << stepSize << ", " << blockSize << ")" << std::endl;
|
cannam@22
|
373 #endif
|
cannam@22
|
374
|
cannam@3
|
375 bool result = ((Plugin *)handle)->initialise
|
cannam@3
|
376 (channels, stepSize, blockSize);
|
cannam@3
|
377 return result ? 1 : 0;
|
cannam@3
|
378 }
|
cannam@3
|
379
|
cannam@3
|
380 void
|
cannam@76
|
381 PluginAdapterBase::Impl::vampReset(VampPluginHandle handle)
|
cannam@3
|
382 {
|
cannam@22
|
383 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
384 std::cerr << "PluginAdapterBase::Impl::vampReset(" << handle << ")" << std::endl;
|
cannam@22
|
385 #endif
|
cannam@22
|
386
|
cannam@3
|
387 ((Plugin *)handle)->reset();
|
cannam@3
|
388 }
|
cannam@3
|
389
|
cannam@3
|
390 float
|
cannam@76
|
391 PluginAdapterBase::Impl::vampGetParameter(VampPluginHandle handle,
|
cannam@3
|
392 int param)
|
cannam@3
|
393 {
|
cannam@22
|
394 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
395 std::cerr << "PluginAdapterBase::Impl::vampGetParameter(" << handle << ", " << param << ")" << std::endl;
|
cannam@22
|
396 #endif
|
cannam@22
|
397
|
cannam@76
|
398 Impl *adapter = lookupAdapter(handle);
|
cannam@3
|
399 if (!adapter) return 0.0;
|
cannam@3
|
400 Plugin::ParameterList &list = adapter->m_parameters;
|
cannam@49
|
401 return ((Plugin *)handle)->getParameter(list[param].identifier);
|
cannam@3
|
402 }
|
cannam@3
|
403
|
cannam@3
|
404 void
|
cannam@76
|
405 PluginAdapterBase::Impl::vampSetParameter(VampPluginHandle handle,
|
cannam@3
|
406 int param, float value)
|
cannam@3
|
407 {
|
cannam@22
|
408 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
409 std::cerr << "PluginAdapterBase::Impl::vampSetParameter(" << handle << ", " << param << ", " << value << ")" << std::endl;
|
cannam@22
|
410 #endif
|
cannam@22
|
411
|
cannam@76
|
412 Impl *adapter = lookupAdapter(handle);
|
cannam@3
|
413 if (!adapter) return;
|
cannam@3
|
414 Plugin::ParameterList &list = adapter->m_parameters;
|
cannam@49
|
415 ((Plugin *)handle)->setParameter(list[param].identifier, value);
|
cannam@3
|
416 }
|
cannam@3
|
417
|
cannam@3
|
418 unsigned int
|
cannam@76
|
419 PluginAdapterBase::Impl::vampGetCurrentProgram(VampPluginHandle handle)
|
cannam@3
|
420 {
|
cannam@22
|
421 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
422 std::cerr << "PluginAdapterBase::Impl::vampGetCurrentProgram(" << handle << ")" << std::endl;
|
cannam@22
|
423 #endif
|
cannam@22
|
424
|
cannam@76
|
425 Impl *adapter = lookupAdapter(handle);
|
cannam@3
|
426 if (!adapter) return 0;
|
cannam@3
|
427 Plugin::ProgramList &list = adapter->m_programs;
|
cannam@3
|
428 std::string program = ((Plugin *)handle)->getCurrentProgram();
|
cannam@3
|
429 for (unsigned int i = 0; i < list.size(); ++i) {
|
cannam@3
|
430 if (list[i] == program) return i;
|
cannam@3
|
431 }
|
cannam@3
|
432 return 0;
|
cannam@3
|
433 }
|
cannam@3
|
434
|
cannam@3
|
435 void
|
cannam@76
|
436 PluginAdapterBase::Impl::vampSelectProgram(VampPluginHandle handle,
|
cannam@3
|
437 unsigned int program)
|
cannam@3
|
438 {
|
cannam@22
|
439 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
440 std::cerr << "PluginAdapterBase::Impl::vampSelectProgram(" << handle << ", " << program << ")" << std::endl;
|
cannam@22
|
441 #endif
|
cannam@22
|
442
|
cannam@76
|
443 Impl *adapter = lookupAdapter(handle);
|
cannam@3
|
444 if (!adapter) return;
|
cannam@3
|
445 Plugin::ProgramList &list = adapter->m_programs;
|
cannam@3
|
446 ((Plugin *)handle)->selectProgram(list[program]);
|
cannam@3
|
447 }
|
cannam@3
|
448
|
cannam@3
|
449 unsigned int
|
cannam@76
|
450 PluginAdapterBase::Impl::vampGetPreferredStepSize(VampPluginHandle handle)
|
cannam@3
|
451 {
|
cannam@22
|
452 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
453 std::cerr << "PluginAdapterBase::Impl::vampGetPreferredStepSize(" << handle << ")" << std::endl;
|
cannam@22
|
454 #endif
|
cannam@22
|
455
|
cannam@3
|
456 return ((Plugin *)handle)->getPreferredStepSize();
|
cannam@3
|
457 }
|
cannam@3
|
458
|
cannam@3
|
459 unsigned int
|
cannam@76
|
460 PluginAdapterBase::Impl::vampGetPreferredBlockSize(VampPluginHandle handle)
|
cannam@3
|
461 {
|
cannam@22
|
462 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
463 std::cerr << "PluginAdapterBase::Impl::vampGetPreferredBlockSize(" << handle << ")" << std::endl;
|
cannam@22
|
464 #endif
|
cannam@22
|
465
|
cannam@3
|
466 return ((Plugin *)handle)->getPreferredBlockSize();
|
cannam@3
|
467 }
|
cannam@3
|
468
|
cannam@3
|
469 unsigned int
|
cannam@76
|
470 PluginAdapterBase::Impl::vampGetMinChannelCount(VampPluginHandle handle)
|
cannam@3
|
471 {
|
cannam@22
|
472 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
473 std::cerr << "PluginAdapterBase::Impl::vampGetMinChannelCount(" << handle << ")" << std::endl;
|
cannam@22
|
474 #endif
|
cannam@22
|
475
|
cannam@3
|
476 return ((Plugin *)handle)->getMinChannelCount();
|
cannam@3
|
477 }
|
cannam@3
|
478
|
cannam@3
|
479 unsigned int
|
cannam@76
|
480 PluginAdapterBase::Impl::vampGetMaxChannelCount(VampPluginHandle handle)
|
cannam@3
|
481 {
|
cannam@22
|
482 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
483 std::cerr << "PluginAdapterBase::Impl::vampGetMaxChannelCount(" << handle << ")" << std::endl;
|
cannam@22
|
484 #endif
|
cannam@22
|
485
|
cannam@3
|
486 return ((Plugin *)handle)->getMaxChannelCount();
|
cannam@3
|
487 }
|
cannam@3
|
488
|
cannam@3
|
489 unsigned int
|
cannam@76
|
490 PluginAdapterBase::Impl::vampGetOutputCount(VampPluginHandle handle)
|
cannam@3
|
491 {
|
cannam@22
|
492 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
493 std::cerr << "PluginAdapterBase::Impl::vampGetOutputCount(" << handle << ")" << std::endl;
|
cannam@22
|
494 #endif
|
cannam@22
|
495
|
cannam@76
|
496 Impl *adapter = lookupAdapter(handle);
|
cannam@15
|
497
|
cannam@15
|
498 // std::cerr << "vampGetOutputCount: handle " << handle << " -> adapter "<< adapter << std::endl;
|
cannam@15
|
499
|
cannam@3
|
500 if (!adapter) return 0;
|
cannam@3
|
501 return adapter->getOutputCount((Plugin *)handle);
|
cannam@3
|
502 }
|
cannam@3
|
503
|
cannam@3
|
504 VampOutputDescriptor *
|
cannam@76
|
505 PluginAdapterBase::Impl::vampGetOutputDescriptor(VampPluginHandle handle,
|
cannam@3
|
506 unsigned int i)
|
cannam@3
|
507 {
|
cannam@22
|
508 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
509 std::cerr << "PluginAdapterBase::Impl::vampGetOutputDescriptor(" << handle << ", " << i << ")" << std::endl;
|
cannam@22
|
510 #endif
|
cannam@22
|
511
|
cannam@76
|
512 Impl *adapter = lookupAdapter(handle);
|
cannam@15
|
513
|
cannam@15
|
514 // std::cerr << "vampGetOutputDescriptor: handle " << handle << " -> adapter "<< adapter << std::endl;
|
cannam@15
|
515
|
cannam@3
|
516 if (!adapter) return 0;
|
cannam@3
|
517 return adapter->getOutputDescriptor((Plugin *)handle, i);
|
cannam@3
|
518 }
|
cannam@3
|
519
|
cannam@3
|
520 void
|
cannam@76
|
521 PluginAdapterBase::Impl::vampReleaseOutputDescriptor(VampOutputDescriptor *desc)
|
cannam@3
|
522 {
|
cannam@22
|
523 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
524 std::cerr << "PluginAdapterBase::Impl::vampReleaseOutputDescriptor(" << desc << ")" << std::endl;
|
cannam@22
|
525 #endif
|
cannam@22
|
526
|
cannam@49
|
527 if (desc->identifier) free((void *)desc->identifier);
|
cannam@3
|
528 if (desc->name) free((void *)desc->name);
|
cannam@3
|
529 if (desc->description) free((void *)desc->description);
|
cannam@3
|
530 if (desc->unit) free((void *)desc->unit);
|
cannam@40
|
531 if (desc->hasFixedBinCount && desc->binNames) {
|
cannam@40
|
532 for (unsigned int i = 0; i < desc->binCount; ++i) {
|
cannam@40
|
533 if (desc->binNames[i]) {
|
cannam@40
|
534 free((void *)desc->binNames[i]);
|
cannam@40
|
535 }
|
cannam@40
|
536 }
|
cannam@3
|
537 }
|
cannam@9
|
538 if (desc->binNames) free((void *)desc->binNames);
|
cannam@3
|
539 free((void *)desc);
|
cannam@3
|
540 }
|
cannam@3
|
541
|
cannam@12
|
542 VampFeatureList *
|
cannam@76
|
543 PluginAdapterBase::Impl::vampProcess(VampPluginHandle handle,
|
cannam@108
|
544 const float *const *inputBuffers,
|
cannam@108
|
545 int sec,
|
cannam@108
|
546 int nsec)
|
cannam@3
|
547 {
|
cannam@22
|
548 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
549 std::cerr << "PluginAdapterBase::Impl::vampProcess(" << handle << ", " << sec << ", " << nsec << ")" << std::endl;
|
cannam@22
|
550 #endif
|
cannam@22
|
551
|
cannam@76
|
552 Impl *adapter = lookupAdapter(handle);
|
cannam@3
|
553 if (!adapter) return 0;
|
cannam@3
|
554 return adapter->process((Plugin *)handle,
|
cannam@3
|
555 inputBuffers, sec, nsec);
|
cannam@3
|
556 }
|
cannam@3
|
557
|
cannam@12
|
558 VampFeatureList *
|
cannam@76
|
559 PluginAdapterBase::Impl::vampGetRemainingFeatures(VampPluginHandle handle)
|
cannam@3
|
560 {
|
cannam@22
|
561 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
562 std::cerr << "PluginAdapterBase::Impl::vampGetRemainingFeatures(" << handle << ")" << std::endl;
|
cannam@22
|
563 #endif
|
cannam@22
|
564
|
cannam@76
|
565 Impl *adapter = lookupAdapter(handle);
|
cannam@3
|
566 if (!adapter) return 0;
|
cannam@3
|
567 return adapter->getRemainingFeatures((Plugin *)handle);
|
cannam@3
|
568 }
|
cannam@3
|
569
|
cannam@3
|
570 void
|
cannam@76
|
571 PluginAdapterBase::Impl::vampReleaseFeatureSet(VampFeatureList *fs)
|
cannam@3
|
572 {
|
cannam@22
|
573 #ifdef DEBUG_PLUGIN_ADAPTER
|
cannam@76
|
574 std::cerr << "PluginAdapterBase::Impl::vampReleaseFeatureSet" << std::endl;
|
cannam@22
|
575 #endif
|
cannam@3
|
576 }
|
cannam@3
|
577
|
cannam@3
|
578 void
|
cannam@76
|
579 PluginAdapterBase::Impl::cleanup(Plugin *plugin)
|
cannam@3
|
580 {
|
cannam@12
|
581 if (m_fs.find(plugin) != m_fs.end()) {
|
cannam@12
|
582 size_t outputCount = 0;
|
cannam@12
|
583 if (m_pluginOutputs[plugin]) {
|
cannam@12
|
584 outputCount = m_pluginOutputs[plugin]->size();
|
cannam@12
|
585 }
|
cannam@12
|
586 VampFeatureList *list = m_fs[plugin];
|
cannam@12
|
587 for (unsigned int i = 0; i < outputCount; ++i) {
|
cannam@12
|
588 for (unsigned int j = 0; j < m_fsizes[plugin][i]; ++j) {
|
cannam@168
|
589 if (list[i].features[j].v1.label) {
|
cannam@168
|
590 free(list[i].features[j].v1.label);
|
cannam@12
|
591 }
|
cannam@168
|
592 if (list[i].features[j].v1.values) {
|
cannam@168
|
593 free(list[i].features[j].v1.values);
|
cannam@12
|
594 }
|
cannam@12
|
595 }
|
cannam@12
|
596 if (list[i].features) free(list[i].features);
|
cannam@12
|
597 }
|
cannam@12
|
598 m_fs.erase(plugin);
|
cannam@12
|
599 m_fsizes.erase(plugin);
|
cannam@12
|
600 m_fvsizes.erase(plugin);
|
cannam@12
|
601 }
|
cannam@12
|
602
|
cannam@3
|
603 if (m_pluginOutputs.find(plugin) != m_pluginOutputs.end()) {
|
cannam@3
|
604 delete m_pluginOutputs[plugin];
|
cannam@3
|
605 m_pluginOutputs.erase(plugin);
|
cannam@3
|
606 }
|
cannam@13
|
607
|
cannam@13
|
608 if (m_adapterMap) {
|
cannam@13
|
609 m_adapterMap->erase(plugin);
|
cannam@13
|
610
|
cannam@13
|
611 if (m_adapterMap->empty()) {
|
cannam@13
|
612 delete m_adapterMap;
|
cannam@13
|
613 m_adapterMap = 0;
|
cannam@13
|
614 }
|
cannam@13
|
615 }
|
cannam@13
|
616
|
cannam@3
|
617 delete ((Plugin *)plugin);
|
cannam@3
|
618 }
|
cannam@3
|
619
|
cannam@3
|
620 void
|
cannam@76
|
621 PluginAdapterBase::Impl::checkOutputMap(Plugin *plugin)
|
cannam@3
|
622 {
|
cannam@15
|
623 if (m_pluginOutputs.find(plugin) == m_pluginOutputs.end() ||
|
cannam@15
|
624 !m_pluginOutputs[plugin]) {
|
cannam@3
|
625 m_pluginOutputs[plugin] = new Plugin::OutputList
|
cannam@3
|
626 (plugin->getOutputDescriptors());
|
cannam@76
|
627 // std::cerr << "PluginAdapterBase::Impl::checkOutputMap: Have " << m_pluginOutputs[plugin]->size() << " outputs for plugin " << plugin->getIdentifier() << std::endl;
|
cannam@3
|
628 }
|
cannam@3
|
629 }
|
cannam@3
|
630
|
cannam@3
|
631 unsigned int
|
cannam@76
|
632 PluginAdapterBase::Impl::getOutputCount(Plugin *plugin)
|
cannam@3
|
633 {
|
cannam@3
|
634 checkOutputMap(plugin);
|
cannam@3
|
635 return m_pluginOutputs[plugin]->size();
|
cannam@3
|
636 }
|
cannam@3
|
637
|
cannam@3
|
638 VampOutputDescriptor *
|
cannam@76
|
639 PluginAdapterBase::Impl::getOutputDescriptor(Plugin *plugin,
|
cannam@3
|
640 unsigned int i)
|
cannam@3
|
641 {
|
cannam@3
|
642 checkOutputMap(plugin);
|
cannam@3
|
643 Plugin::OutputDescriptor &od =
|
cannam@3
|
644 (*m_pluginOutputs[plugin])[i];
|
cannam@3
|
645
|
cannam@3
|
646 VampOutputDescriptor *desc = (VampOutputDescriptor *)
|
cannam@3
|
647 malloc(sizeof(VampOutputDescriptor));
|
cannam@3
|
648
|
cannam@49
|
649 desc->identifier = strdup(od.identifier.c_str());
|
cannam@3
|
650 desc->name = strdup(od.name.c_str());
|
cannam@3
|
651 desc->description = strdup(od.description.c_str());
|
cannam@3
|
652 desc->unit = strdup(od.unit.c_str());
|
cannam@9
|
653 desc->hasFixedBinCount = od.hasFixedBinCount;
|
cannam@9
|
654 desc->binCount = od.binCount;
|
cannam@3
|
655
|
cannam@9
|
656 if (od.hasFixedBinCount && od.binCount > 0) {
|
cannam@9
|
657 desc->binNames = (const char **)
|
cannam@9
|
658 malloc(od.binCount * sizeof(const char *));
|
cannam@3
|
659
|
cannam@9
|
660 for (unsigned int i = 0; i < od.binCount; ++i) {
|
cannam@9
|
661 if (i < od.binNames.size()) {
|
cannam@9
|
662 desc->binNames[i] = strdup(od.binNames[i].c_str());
|
cannam@7
|
663 } else {
|
cannam@9
|
664 desc->binNames[i] = 0;
|
cannam@7
|
665 }
|
cannam@3
|
666 }
|
cannam@7
|
667 } else {
|
cannam@9
|
668 desc->binNames = 0;
|
cannam@3
|
669 }
|
cannam@3
|
670
|
cannam@3
|
671 desc->hasKnownExtents = od.hasKnownExtents;
|
cannam@3
|
672 desc->minValue = od.minValue;
|
cannam@3
|
673 desc->maxValue = od.maxValue;
|
cannam@3
|
674 desc->isQuantized = od.isQuantized;
|
cannam@3
|
675 desc->quantizeStep = od.quantizeStep;
|
cannam@3
|
676
|
cannam@3
|
677 switch (od.sampleType) {
|
cannam@3
|
678 case Plugin::OutputDescriptor::OneSamplePerStep:
|
cannam@3
|
679 desc->sampleType = vampOneSamplePerStep; break;
|
cannam@3
|
680 case Plugin::OutputDescriptor::FixedSampleRate:
|
cannam@3
|
681 desc->sampleType = vampFixedSampleRate; break;
|
cannam@3
|
682 case Plugin::OutputDescriptor::VariableSampleRate:
|
cannam@3
|
683 desc->sampleType = vampVariableSampleRate; break;
|
cannam@3
|
684 }
|
cannam@3
|
685
|
cannam@3
|
686 desc->sampleRate = od.sampleRate;
|
cannam@192
|
687 desc->hasDuration = od.hasDuration;
|
cannam@3
|
688
|
cannam@3
|
689 return desc;
|
cannam@3
|
690 }
|
cannam@3
|
691
|
cannam@12
|
692 VampFeatureList *
|
cannam@76
|
693 PluginAdapterBase::Impl::process(Plugin *plugin,
|
cannam@108
|
694 const float *const *inputBuffers,
|
cannam@108
|
695 int sec, int nsec)
|
cannam@3
|
696 {
|
cannam@76
|
697 // std::cerr << "PluginAdapterBase::Impl::process" << std::endl;
|
cannam@3
|
698 RealTime rt(sec, nsec);
|
cannam@12
|
699 checkOutputMap(plugin);
|
cannam@12
|
700 return convertFeatures(plugin, plugin->process(inputBuffers, rt));
|
cannam@3
|
701 }
|
cannam@3
|
702
|
cannam@12
|
703 VampFeatureList *
|
cannam@76
|
704 PluginAdapterBase::Impl::getRemainingFeatures(Plugin *plugin)
|
cannam@3
|
705 {
|
cannam@76
|
706 // std::cerr << "PluginAdapterBase::Impl::getRemainingFeatures" << std::endl;
|
cannam@12
|
707 checkOutputMap(plugin);
|
cannam@12
|
708 return convertFeatures(plugin, plugin->getRemainingFeatures());
|
cannam@3
|
709 }
|
cannam@3
|
710
|
cannam@12
|
711 VampFeatureList *
|
cannam@76
|
712 PluginAdapterBase::Impl::convertFeatures(Plugin *plugin,
|
cannam@167
|
713 const Plugin::FeatureSet &features)
|
cannam@3
|
714 {
|
cannam@12
|
715 int lastN = -1;
|
cannam@3
|
716
|
cannam@12
|
717 int outputCount = 0;
|
cannam@12
|
718 if (m_pluginOutputs[plugin]) outputCount = m_pluginOutputs[plugin]->size();
|
cannam@12
|
719
|
cannam@12
|
720 resizeFS(plugin, outputCount);
|
cannam@12
|
721 VampFeatureList *fs = m_fs[plugin];
|
cannam@3
|
722
|
cannam@168
|
723 // std::cerr << "PluginAdapter(v2)::convertFeatures: NOTE: sizeof(Feature) == " << sizeof(Plugin::Feature) << ", sizeof(VampFeature) == " << sizeof(VampFeature) << ", sizeof(VampFeatureList) == " << sizeof(VampFeatureList) << std::endl;
|
cannam@168
|
724
|
cannam@12
|
725 for (Plugin::FeatureSet::const_iterator fi = features.begin();
|
cannam@12
|
726 fi != features.end(); ++fi) {
|
cannam@3
|
727
|
cannam@12
|
728 int n = fi->first;
|
cannam@12
|
729
|
cannam@76
|
730 // std::cerr << "PluginAdapterBase::Impl::convertFeatures: n = " << n << std::endl;
|
cannam@7
|
731
|
cannam@12
|
732 if (n >= int(outputCount)) {
|
cannam@76
|
733 std::cerr << "WARNING: PluginAdapterBase::Impl::convertFeatures: Too many outputs from plugin (" << n+1 << ", only should be " << outputCount << ")" << std::endl;
|
cannam@7
|
734 continue;
|
cannam@7
|
735 }
|
cannam@7
|
736
|
cannam@12
|
737 if (n > lastN + 1) {
|
cannam@12
|
738 for (int i = lastN + 1; i < n; ++i) {
|
cannam@12
|
739 fs[i].featureCount = 0;
|
cannam@12
|
740 }
|
cannam@12
|
741 }
|
cannam@7
|
742
|
cannam@7
|
743 const Plugin::FeatureList &fl = fi->second;
|
cannam@7
|
744
|
cannam@12
|
745 size_t sz = fl.size();
|
cannam@12
|
746 if (sz > m_fsizes[plugin][n]) resizeFL(plugin, n, sz);
|
cannam@12
|
747 fs[n].featureCount = sz;
|
cannam@12
|
748
|
cannam@12
|
749 for (size_t j = 0; j < sz; ++j) {
|
cannam@7
|
750
|
cannam@76
|
751 // std::cerr << "PluginAdapterBase::Impl::convertFeatures: j = " << j << std::endl;
|
cannam@7
|
752
|
cannam@168
|
753 VampFeature *feature = &fs[n].features[j].v1;
|
cannam@7
|
754
|
cannam@7
|
755 feature->hasTimestamp = fl[j].hasTimestamp;
|
cannam@7
|
756 feature->sec = fl[j].timestamp.sec;
|
cannam@7
|
757 feature->nsec = fl[j].timestamp.nsec;
|
cannam@7
|
758 feature->valueCount = fl[j].values.size();
|
cannam@7
|
759
|
cannam@168
|
760 VampFeatureV2 *v2 = &fs[n].features[j + sz].v2;
|
cannam@167
|
761
|
cannam@167
|
762 v2->hasDuration = fl[j].hasDuration;
|
cannam@167
|
763 v2->durationSec = fl[j].duration.sec;
|
cannam@167
|
764 v2->durationNsec = fl[j].duration.nsec;
|
cannam@167
|
765
|
cannam@12
|
766 if (feature->label) free(feature->label);
|
cannam@12
|
767
|
cannam@12
|
768 if (fl[j].label.empty()) {
|
cannam@12
|
769 feature->label = 0;
|
cannam@12
|
770 } else {
|
cannam@12
|
771 feature->label = strdup(fl[j].label.c_str());
|
cannam@7
|
772 }
|
cannam@7
|
773
|
cannam@12
|
774 if (feature->valueCount > m_fvsizes[plugin][n][j]) {
|
cannam@12
|
775 resizeFV(plugin, n, j, feature->valueCount);
|
cannam@12
|
776 }
|
cannam@7
|
777
|
cannam@7
|
778 for (unsigned int k = 0; k < feature->valueCount; ++k) {
|
cannam@76
|
779 // std::cerr << "PluginAdapterBase::Impl::convertFeatures: k = " << k << std::endl;
|
cannam@7
|
780 feature->values[k] = fl[j].values[k];
|
cannam@3
|
781 }
|
cannam@3
|
782 }
|
cannam@12
|
783
|
cannam@12
|
784 lastN = n;
|
cannam@3
|
785 }
|
cannam@3
|
786
|
cannam@12
|
787 if (lastN == -1) return 0;
|
cannam@12
|
788
|
cannam@12
|
789 if (int(outputCount) > lastN + 1) {
|
cannam@12
|
790 for (int i = lastN + 1; i < int(outputCount); ++i) {
|
cannam@12
|
791 fs[i].featureCount = 0;
|
cannam@12
|
792 }
|
cannam@12
|
793 }
|
cannam@3
|
794
|
cannam@168
|
795 // std::cerr << "PluginAdapter(v2)::convertFeatures: NOTE: have " << outputCount << " outputs" << std::endl;
|
cannam@168
|
796 // for (int i = 0; i < outputCount; ++i) {
|
cannam@168
|
797 // std::cerr << "PluginAdapter(v2)::convertFeatures: NOTE: output " << i << " has " << fs[i].featureCount << " features" << std::endl;
|
cannam@168
|
798 // }
|
cannam@168
|
799
|
cannam@168
|
800
|
cannam@3
|
801 return fs;
|
cannam@3
|
802 }
|
cannam@3
|
803
|
cannam@12
|
804 void
|
cannam@76
|
805 PluginAdapterBase::Impl::resizeFS(Plugin *plugin, int n)
|
cannam@12
|
806 {
|
cannam@76
|
807 // std::cerr << "PluginAdapterBase::Impl::resizeFS(" << plugin << ", " << n << ")" << std::endl;
|
cannam@12
|
808
|
cannam@12
|
809 int i = m_fsizes[plugin].size();
|
cannam@12
|
810 if (i >= n) return;
|
cannam@12
|
811
|
cannam@16
|
812 // std::cerr << "resizing from " << i << std::endl;
|
cannam@12
|
813
|
cannam@12
|
814 m_fs[plugin] = (VampFeatureList *)realloc
|
cannam@12
|
815 (m_fs[plugin], n * sizeof(VampFeatureList));
|
cannam@12
|
816
|
cannam@12
|
817 while (i < n) {
|
cannam@12
|
818 m_fs[plugin][i].featureCount = 0;
|
cannam@12
|
819 m_fs[plugin][i].features = 0;
|
cannam@12
|
820 m_fsizes[plugin].push_back(0);
|
cannam@12
|
821 m_fvsizes[plugin].push_back(std::vector<size_t>());
|
cannam@12
|
822 i++;
|
cannam@12
|
823 }
|
cannam@12
|
824 }
|
cannam@12
|
825
|
cannam@12
|
826 void
|
cannam@76
|
827 PluginAdapterBase::Impl::resizeFL(Plugin *plugin, int n, size_t sz)
|
cannam@12
|
828 {
|
cannam@76
|
829 // std::cerr << "PluginAdapterBase::Impl::resizeFL(" << plugin << ", " << n << ", "
|
cannam@16
|
830 // << sz << ")" << std::endl;
|
cannam@12
|
831
|
cannam@12
|
832 size_t i = m_fsizes[plugin][n];
|
cannam@12
|
833 if (i >= sz) return;
|
cannam@12
|
834
|
cannam@16
|
835 // std::cerr << "resizing from " << i << std::endl;
|
cannam@12
|
836
|
cannam@168
|
837 m_fs[plugin][n].features = (VampFeatureUnion *)realloc
|
cannam@168
|
838 (m_fs[plugin][n].features, 2 * sz * sizeof(VampFeatureUnion));
|
cannam@167
|
839
|
cannam@12
|
840 while (m_fsizes[plugin][n] < sz) {
|
cannam@168
|
841 m_fs[plugin][n].features[m_fsizes[plugin][n]].v1.hasTimestamp = 0;
|
cannam@168
|
842 m_fs[plugin][n].features[m_fsizes[plugin][n]].v1.valueCount = 0;
|
cannam@168
|
843 m_fs[plugin][n].features[m_fsizes[plugin][n]].v1.values = 0;
|
cannam@168
|
844 m_fs[plugin][n].features[m_fsizes[plugin][n]].v1.label = 0;
|
cannam@189
|
845 m_fs[plugin][n].features[m_fsizes[plugin][n] + sz].v2.hasDuration = 0;
|
cannam@12
|
846 m_fvsizes[plugin][n].push_back(0);
|
cannam@12
|
847 m_fsizes[plugin][n]++;
|
cannam@12
|
848 }
|
cannam@12
|
849 }
|
cannam@12
|
850
|
cannam@12
|
851 void
|
cannam@76
|
852 PluginAdapterBase::Impl::resizeFV(Plugin *plugin, int n, int j, size_t sz)
|
cannam@12
|
853 {
|
cannam@76
|
854 // std::cerr << "PluginAdapterBase::Impl::resizeFV(" << plugin << ", " << n << ", "
|
cannam@16
|
855 // << j << ", " << sz << ")" << std::endl;
|
cannam@12
|
856
|
cannam@12
|
857 size_t i = m_fvsizes[plugin][n][j];
|
cannam@12
|
858 if (i >= sz) return;
|
cannam@12
|
859
|
cannam@16
|
860 // std::cerr << "resizing from " << i << std::endl;
|
cannam@12
|
861
|
cannam@168
|
862 m_fs[plugin][n].features[j].v1.values = (float *)realloc
|
cannam@168
|
863 (m_fs[plugin][n].features[j].v1.values, sz * sizeof(float));
|
cannam@12
|
864
|
cannam@12
|
865 m_fvsizes[plugin][n][j] = sz;
|
cannam@12
|
866 }
|
cannam@12
|
867
|
cannam@76
|
868 PluginAdapterBase::Impl::AdapterMap *
|
cannam@76
|
869 PluginAdapterBase::Impl::m_adapterMap = 0;
|
cannam@3
|
870
|
cannam@3
|
871 }
|
cannam@3
|
872
|