cannam@1
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
cannam@1
|
2
|
cannam@1
|
3 /*
|
cannam@1
|
4 Vamp
|
cannam@1
|
5
|
cannam@1
|
6 An API for audio analysis and feature extraction plugins.
|
cannam@1
|
7
|
cannam@1
|
8 Centre for Digital Music, Queen Mary, University of London.
|
cannam@1
|
9 Copyright 2006 Chris Cannam.
|
cannam@1
|
10
|
cannam@1
|
11 Permission is hereby granted, free of charge, to any person
|
cannam@1
|
12 obtaining a copy of this software and associated documentation
|
cannam@1
|
13 files (the "Software"), to deal in the Software without
|
cannam@1
|
14 restriction, including without limitation the rights to use, copy,
|
cannam@1
|
15 modify, merge, publish, distribute, sublicense, and/or sell copies
|
cannam@1
|
16 of the Software, and to permit persons to whom the Software is
|
cannam@1
|
17 furnished to do so, subject to the following conditions:
|
cannam@1
|
18
|
cannam@1
|
19 The above copyright notice and this permission notice shall be
|
cannam@1
|
20 included in all copies or substantial portions of the Software.
|
cannam@1
|
21
|
cannam@1
|
22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
cannam@1
|
23 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
cannam@1
|
24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
cannam@6
|
25 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
cannam@1
|
26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
cannam@1
|
27 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
cannam@1
|
28 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
cannam@1
|
29
|
cannam@1
|
30 Except as contained in this notice, the names of the Centre for
|
cannam@1
|
31 Digital Music; Queen Mary, University of London; and Chris Cannam
|
cannam@1
|
32 shall not be used in advertising or otherwise to promote the sale,
|
cannam@1
|
33 use or other dealings in this Software without prior written
|
cannam@1
|
34 authorization.
|
cannam@1
|
35 */
|
cannam@1
|
36
|
cannam@1
|
37 #include "PluginHostAdapter.h"
|
cannam@1
|
38
|
cannam@1
|
39 namespace Vamp
|
cannam@1
|
40 {
|
cannam@1
|
41
|
cannam@1
|
42 PluginHostAdapter::PluginHostAdapter(const VampPluginDescriptor *descriptor,
|
cannam@1
|
43 float inputSampleRate) :
|
cannam@1
|
44 Plugin(inputSampleRate),
|
cannam@1
|
45 m_descriptor(descriptor)
|
cannam@1
|
46 {
|
cannam@15
|
47 // std::cerr << "PluginHostAdapter::PluginHostAdapter (plugin = " << descriptor->name << ")" << std::endl;
|
cannam@1
|
48 m_handle = m_descriptor->instantiate(m_descriptor, inputSampleRate);
|
cannam@15
|
49 if (!m_handle) {
|
cannam@15
|
50 // std::cerr << "WARNING: PluginHostAdapter: Plugin instantiation failed for plugin " << m_descriptor->name << std::endl;
|
cannam@15
|
51 }
|
cannam@1
|
52 }
|
cannam@1
|
53
|
cannam@1
|
54 PluginHostAdapter::~PluginHostAdapter()
|
cannam@1
|
55 {
|
cannam@15
|
56 // std::cerr << "PluginHostAdapter::~PluginHostAdapter (plugin = " << m_descriptor->name << ")" << std::endl;
|
cannam@1
|
57 if (m_handle) m_descriptor->cleanup(m_handle);
|
cannam@1
|
58 }
|
cannam@1
|
59
|
cannam@1
|
60 bool
|
cannam@1
|
61 PluginHostAdapter::initialise(size_t channels,
|
cannam@1
|
62 size_t stepSize,
|
cannam@1
|
63 size_t blockSize)
|
cannam@1
|
64 {
|
cannam@1
|
65 if (!m_handle) return false;
|
cannam@1
|
66 return m_descriptor->initialise(m_handle, channels, stepSize, blockSize) ?
|
cannam@1
|
67 true : false;
|
cannam@1
|
68 }
|
cannam@1
|
69
|
cannam@1
|
70 void
|
cannam@1
|
71 PluginHostAdapter::reset()
|
cannam@1
|
72 {
|
cannam@1
|
73 if (!m_handle) return;
|
cannam@1
|
74 m_descriptor->reset(m_handle);
|
cannam@1
|
75 }
|
cannam@1
|
76
|
cannam@1
|
77 PluginHostAdapter::InputDomain
|
cannam@1
|
78 PluginHostAdapter::getInputDomain() const
|
cannam@1
|
79 {
|
cannam@1
|
80 if (m_descriptor->inputDomain == vampFrequencyDomain) {
|
cannam@1
|
81 return FrequencyDomain;
|
cannam@1
|
82 } else {
|
cannam@1
|
83 return TimeDomain;
|
cannam@1
|
84 }
|
cannam@1
|
85 }
|
cannam@1
|
86
|
cannam@1
|
87 std::string
|
cannam@1
|
88 PluginHostAdapter::getName() const
|
cannam@1
|
89 {
|
cannam@1
|
90 return m_descriptor->name;
|
cannam@1
|
91 }
|
cannam@1
|
92
|
cannam@1
|
93 std::string
|
cannam@1
|
94 PluginHostAdapter::getDescription() const
|
cannam@1
|
95 {
|
cannam@1
|
96 return m_descriptor->description;
|
cannam@1
|
97 }
|
cannam@1
|
98
|
cannam@1
|
99 std::string
|
cannam@1
|
100 PluginHostAdapter::getMaker() const
|
cannam@1
|
101 {
|
cannam@1
|
102 return m_descriptor->maker;
|
cannam@1
|
103 }
|
cannam@1
|
104
|
cannam@1
|
105 int
|
cannam@1
|
106 PluginHostAdapter::getPluginVersion() const
|
cannam@1
|
107 {
|
cannam@1
|
108 return m_descriptor->pluginVersion;
|
cannam@1
|
109 }
|
cannam@1
|
110
|
cannam@1
|
111 std::string
|
cannam@1
|
112 PluginHostAdapter::getCopyright() const
|
cannam@1
|
113 {
|
cannam@1
|
114 return m_descriptor->copyright;
|
cannam@1
|
115 }
|
cannam@1
|
116
|
cannam@1
|
117 PluginHostAdapter::ParameterList
|
cannam@1
|
118 PluginHostAdapter::getParameterDescriptors() const
|
cannam@1
|
119 {
|
cannam@1
|
120 ParameterList list;
|
cannam@1
|
121 for (unsigned int i = 0; i < m_descriptor->parameterCount; ++i) {
|
cannam@1
|
122 const VampParameterDescriptor *spd = m_descriptor->parameters[i];
|
cannam@1
|
123 ParameterDescriptor pd;
|
cannam@1
|
124 pd.name = spd->name;
|
cannam@1
|
125 pd.description = spd->description;
|
cannam@1
|
126 pd.unit = spd->unit;
|
cannam@1
|
127 pd.minValue = spd->minValue;
|
cannam@1
|
128 pd.maxValue = spd->maxValue;
|
cannam@1
|
129 pd.defaultValue = spd->defaultValue;
|
cannam@1
|
130 pd.isQuantized = spd->isQuantized;
|
cannam@1
|
131 pd.quantizeStep = spd->quantizeStep;
|
cannam@9
|
132 if (pd.isQuantized && spd->valueNames) {
|
cannam@9
|
133 for (unsigned int j = 0; spd->valueNames[j]; ++j) {
|
cannam@9
|
134 pd.valueNames.push_back(spd->valueNames[j]);
|
cannam@9
|
135 }
|
cannam@9
|
136 }
|
cannam@1
|
137 list.push_back(pd);
|
cannam@1
|
138 }
|
cannam@1
|
139 return list;
|
cannam@1
|
140 }
|
cannam@1
|
141
|
cannam@1
|
142 float
|
cannam@1
|
143 PluginHostAdapter::getParameter(std::string param) const
|
cannam@1
|
144 {
|
cannam@1
|
145 if (!m_handle) return 0.0;
|
cannam@1
|
146
|
cannam@1
|
147 for (unsigned int i = 0; i < m_descriptor->parameterCount; ++i) {
|
cannam@1
|
148 if (param == m_descriptor->parameters[i]->name) {
|
cannam@1
|
149 return m_descriptor->getParameter(m_handle, i);
|
cannam@1
|
150 }
|
cannam@1
|
151 }
|
cannam@1
|
152
|
cannam@1
|
153 return 0.0;
|
cannam@1
|
154 }
|
cannam@1
|
155
|
cannam@1
|
156 void
|
cannam@1
|
157 PluginHostAdapter::setParameter(std::string param,
|
cannam@1
|
158 float value)
|
cannam@1
|
159 {
|
cannam@1
|
160 if (!m_handle) return;
|
cannam@1
|
161
|
cannam@1
|
162 for (unsigned int i = 0; i < m_descriptor->parameterCount; ++i) {
|
cannam@1
|
163 if (param == m_descriptor->parameters[i]->name) {
|
cannam@1
|
164 m_descriptor->setParameter(m_handle, i, value);
|
cannam@1
|
165 return;
|
cannam@1
|
166 }
|
cannam@1
|
167 }
|
cannam@1
|
168 }
|
cannam@1
|
169
|
cannam@1
|
170 PluginHostAdapter::ProgramList
|
cannam@1
|
171 PluginHostAdapter::getPrograms() const
|
cannam@1
|
172 {
|
cannam@1
|
173 ProgramList list;
|
cannam@1
|
174
|
cannam@1
|
175 for (unsigned int i = 0; i < m_descriptor->programCount; ++i) {
|
cannam@1
|
176 list.push_back(m_descriptor->programs[i]);
|
cannam@1
|
177 }
|
cannam@1
|
178
|
cannam@1
|
179 return list;
|
cannam@1
|
180 }
|
cannam@1
|
181
|
cannam@1
|
182 std::string
|
cannam@1
|
183 PluginHostAdapter::getCurrentProgram() const
|
cannam@1
|
184 {
|
cannam@1
|
185 if (!m_handle) return "";
|
cannam@1
|
186
|
cannam@1
|
187 int pn = m_descriptor->getCurrentProgram(m_handle);
|
cannam@1
|
188 return m_descriptor->programs[pn];
|
cannam@1
|
189 }
|
cannam@1
|
190
|
cannam@1
|
191 void
|
cannam@1
|
192 PluginHostAdapter::selectProgram(std::string program)
|
cannam@1
|
193 {
|
cannam@1
|
194 if (!m_handle) return;
|
cannam@1
|
195
|
cannam@1
|
196 for (unsigned int i = 0; i < m_descriptor->programCount; ++i) {
|
cannam@1
|
197 if (program == m_descriptor->programs[i]) {
|
cannam@1
|
198 m_descriptor->selectProgram(m_handle, i);
|
cannam@1
|
199 return;
|
cannam@1
|
200 }
|
cannam@1
|
201 }
|
cannam@1
|
202 }
|
cannam@1
|
203
|
cannam@1
|
204 size_t
|
cannam@1
|
205 PluginHostAdapter::getPreferredStepSize() const
|
cannam@1
|
206 {
|
cannam@1
|
207 if (!m_handle) return 0;
|
cannam@1
|
208 return m_descriptor->getPreferredStepSize(m_handle);
|
cannam@1
|
209 }
|
cannam@1
|
210
|
cannam@1
|
211 size_t
|
cannam@1
|
212 PluginHostAdapter::getPreferredBlockSize() const
|
cannam@1
|
213 {
|
cannam@1
|
214 if (!m_handle) return 0;
|
cannam@1
|
215 return m_descriptor->getPreferredBlockSize(m_handle);
|
cannam@1
|
216 }
|
cannam@1
|
217
|
cannam@1
|
218 PluginHostAdapter::OutputList
|
cannam@1
|
219 PluginHostAdapter::getOutputDescriptors() const
|
cannam@1
|
220 {
|
cannam@1
|
221 OutputList list;
|
cannam@15
|
222 if (!m_handle) {
|
cannam@15
|
223 // std::cerr << "PluginHostAdapter::getOutputDescriptors: no handle " << std::endl;
|
cannam@15
|
224 return list;
|
cannam@15
|
225 }
|
cannam@1
|
226
|
cannam@1
|
227 unsigned int count = m_descriptor->getOutputCount(m_handle);
|
cannam@1
|
228
|
cannam@1
|
229 for (unsigned int i = 0; i < count; ++i) {
|
cannam@1
|
230 VampOutputDescriptor *sd = m_descriptor->getOutputDescriptor(m_handle, i);
|
cannam@1
|
231 OutputDescriptor d;
|
cannam@1
|
232 d.name = sd->name;
|
cannam@1
|
233 d.description = sd->description;
|
cannam@1
|
234 d.unit = sd->unit;
|
cannam@9
|
235 d.hasFixedBinCount = sd->hasFixedBinCount;
|
cannam@9
|
236 d.binCount = sd->binCount;
|
cannam@9
|
237 if (d.hasFixedBinCount) {
|
cannam@9
|
238 for (unsigned int j = 0; j < sd->binCount; ++j) {
|
cannam@9
|
239 d.binNames.push_back(sd->binNames[j] ? sd->binNames[j] : "");
|
cannam@9
|
240 }
|
cannam@1
|
241 }
|
cannam@1
|
242 d.hasKnownExtents = sd->hasKnownExtents;
|
cannam@1
|
243 d.minValue = sd->minValue;
|
cannam@1
|
244 d.maxValue = sd->maxValue;
|
cannam@1
|
245 d.isQuantized = sd->isQuantized;
|
cannam@1
|
246 d.quantizeStep = sd->quantizeStep;
|
cannam@1
|
247
|
cannam@1
|
248 switch (sd->sampleType) {
|
cannam@1
|
249 case vampOneSamplePerStep:
|
cannam@1
|
250 d.sampleType = OutputDescriptor::OneSamplePerStep; break;
|
cannam@1
|
251 case vampFixedSampleRate:
|
cannam@1
|
252 d.sampleType = OutputDescriptor::FixedSampleRate; break;
|
cannam@1
|
253 case vampVariableSampleRate:
|
cannam@1
|
254 d.sampleType = OutputDescriptor::VariableSampleRate; break;
|
cannam@1
|
255 }
|
cannam@1
|
256
|
cannam@1
|
257 d.sampleRate = sd->sampleRate;
|
cannam@1
|
258
|
cannam@1
|
259 list.push_back(d);
|
cannam@1
|
260
|
cannam@1
|
261 m_descriptor->releaseOutputDescriptor(sd);
|
cannam@1
|
262 }
|
cannam@1
|
263
|
cannam@1
|
264 return list;
|
cannam@1
|
265 }
|
cannam@1
|
266
|
cannam@1
|
267 PluginHostAdapter::FeatureSet
|
cannam@1
|
268 PluginHostAdapter::process(float **inputBuffers,
|
cannam@1
|
269 RealTime timestamp)
|
cannam@1
|
270 {
|
cannam@1
|
271 FeatureSet fs;
|
cannam@1
|
272 if (!m_handle) return fs;
|
cannam@1
|
273
|
cannam@1
|
274 int sec = timestamp.sec;
|
cannam@1
|
275 int nsec = timestamp.nsec;
|
cannam@1
|
276
|
cannam@12
|
277 VampFeatureList *features = m_descriptor->process(m_handle,
|
cannam@1
|
278 inputBuffers,
|
cannam@1
|
279 sec, nsec);
|
cannam@1
|
280
|
cannam@1
|
281 convertFeatures(features, fs);
|
cannam@1
|
282 m_descriptor->releaseFeatureSet(features);
|
cannam@1
|
283 return fs;
|
cannam@1
|
284 }
|
cannam@1
|
285
|
cannam@1
|
286 PluginHostAdapter::FeatureSet
|
cannam@1
|
287 PluginHostAdapter::getRemainingFeatures()
|
cannam@1
|
288 {
|
cannam@1
|
289 FeatureSet fs;
|
cannam@1
|
290 if (!m_handle) return fs;
|
cannam@1
|
291
|
cannam@12
|
292 VampFeatureList *features = m_descriptor->getRemainingFeatures(m_handle);
|
cannam@1
|
293
|
cannam@1
|
294 convertFeatures(features, fs);
|
cannam@1
|
295 m_descriptor->releaseFeatureSet(features);
|
cannam@1
|
296 return fs;
|
cannam@1
|
297 }
|
cannam@1
|
298
|
cannam@1
|
299 void
|
cannam@12
|
300 PluginHostAdapter::convertFeatures(VampFeatureList *features,
|
cannam@1
|
301 FeatureSet &fs)
|
cannam@1
|
302 {
|
cannam@7
|
303 if (!features) return;
|
cannam@7
|
304
|
cannam@12
|
305 unsigned int outputs = m_descriptor->getOutputCount(m_handle);
|
cannam@12
|
306
|
cannam@12
|
307 for (unsigned int i = 0; i < outputs; ++i) {
|
cannam@1
|
308
|
cannam@12
|
309 VampFeatureList &list = features[i];
|
cannam@1
|
310
|
cannam@1
|
311 if (list.featureCount > 0) {
|
cannam@1
|
312
|
cannam@1
|
313 for (unsigned int j = 0; j < list.featureCount; ++j) {
|
cannam@1
|
314
|
cannam@1
|
315 Feature feature;
|
cannam@1
|
316 feature.hasTimestamp = list.features[j].hasTimestamp;
|
cannam@1
|
317 feature.timestamp = RealTime(list.features[j].sec,
|
cannam@1
|
318 list.features[j].nsec);
|
cannam@1
|
319
|
cannam@1
|
320 for (unsigned int k = 0; k < list.features[j].valueCount; ++k) {
|
cannam@1
|
321 feature.values.push_back(list.features[j].values[k]);
|
cannam@1
|
322 }
|
cannam@7
|
323
|
cannam@7
|
324 if (list.features[j].label) {
|
cannam@7
|
325 feature.label = list.features[j].label;
|
cannam@7
|
326 }
|
cannam@1
|
327
|
cannam@1
|
328 fs[i].push_back(feature);
|
cannam@1
|
329 }
|
cannam@1
|
330 }
|
cannam@1
|
331 }
|
cannam@1
|
332 }
|
cannam@1
|
333
|
cannam@1
|
334 }
|