cannam@0
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
cannam@0
|
2
|
cannam@0
|
3 /*
|
cannam@0
|
4 Vamp feature extraction plugin using the MATCH audio alignment
|
cannam@0
|
5 algorithm.
|
cannam@0
|
6
|
cannam@0
|
7 Centre for Digital Music, Queen Mary, University of London.
|
cannam@0
|
8 This file copyright 2007 Simon Dixon, Chris Cannam and QMUL.
|
cannam@0
|
9
|
cannam@0
|
10 This program is free software; you can redistribute it and/or
|
cannam@0
|
11 modify it under the terms of the GNU General Public License as
|
cannam@0
|
12 published by the Free Software Foundation; either version 2 of the
|
cannam@0
|
13 License, or (at your option) any later version. See the file
|
cannam@0
|
14 COPYING included with this distribution for more information.
|
cannam@0
|
15 */
|
cannam@0
|
16
|
cannam@0
|
17 #include "MatchVampPlugin.h"
|
cannam@0
|
18
|
cannam@0
|
19 #include "Matcher.h"
|
cannam@0
|
20 #include "MatchFeeder.h"
|
cannam@0
|
21 #include "Path.h"
|
cannam@0
|
22
|
cannam@0
|
23 #include <vamp/vamp.h>
|
cannam@0
|
24 #include <vamp-sdk/PluginAdapter.h>
|
cannam@0
|
25 #include <vamp-sdk/RealTime.h>
|
cannam@0
|
26
|
cannam@0
|
27 #include <vector>
|
cannam@0
|
28 #include <algorithm>
|
cannam@0
|
29
|
cannam@0
|
30 //static int extant = 0;
|
cannam@0
|
31
|
cannam@0
|
32 #ifdef _WIN32
|
cannam@0
|
33 HANDLE
|
cannam@0
|
34 MatchVampPlugin::m_serialisingMutex;
|
cannam@0
|
35 #else
|
cannam@0
|
36 pthread_mutex_t
|
cannam@0
|
37 MatchVampPlugin::m_serialisingMutex;
|
cannam@0
|
38 #endif
|
cannam@0
|
39
|
cannam@0
|
40 bool
|
cannam@0
|
41 MatchVampPlugin::m_serialisingMutexInitialised = false;
|
cannam@0
|
42
|
Chris@10
|
43 // We want to ensure our freq map / crossover bin in Matcher.cpp are
|
Chris@10
|
44 // always valid with a fixed FFT length in seconds, so must reject low
|
Chris@10
|
45 // sample rates
|
Chris@10
|
46 static float sampleRateMin = 5000.f;
|
Chris@10
|
47
|
Chris@15
|
48 static float defaultStepTime = 0.020;
|
Chris@15
|
49
|
cannam@0
|
50 MatchVampPlugin::MatchVampPlugin(float inputSampleRate) :
|
cannam@0
|
51 Plugin(inputSampleRate),
|
Chris@16
|
52 m_stepSize(inputSampleRate * defaultStepTime + 0.001),
|
Chris@15
|
53 m_stepTime(defaultStepTime),
|
Chris@16
|
54 m_blockSize(2048),
|
cannam@0
|
55 m_serialise(false),
|
cannam@0
|
56 m_begin(true),
|
Chris@17
|
57 m_locked(false),
|
Chris@17
|
58 m_params(inputSampleRate, defaultStepTime, m_blockSize),
|
Chris@17
|
59 m_defaultParams(inputSampleRate, defaultStepTime, m_blockSize)
|
cannam@0
|
60 {
|
Chris@10
|
61 if (inputSampleRate < sampleRateMin) {
|
Chris@10
|
62 std::cerr << "MatchVampPlugin::MatchVampPlugin: input sample rate "
|
Chris@10
|
63 << inputSampleRate << " < min supported rate "
|
Chris@10
|
64 << sampleRateMin << ", plugin will refuse to initialise"
|
Chris@10
|
65 << std::endl;
|
Chris@10
|
66 }
|
Chris@10
|
67
|
cannam@0
|
68 if (!m_serialisingMutexInitialised) {
|
cannam@0
|
69 m_serialisingMutexInitialised = true;
|
cannam@0
|
70 #ifdef _WIN32
|
cannam@0
|
71 m_serialisingMutex = CreateMutex(NULL, FALSE, NULL);
|
cannam@0
|
72 #else
|
cannam@0
|
73 pthread_mutex_init(&m_serialisingMutex, 0);
|
cannam@0
|
74 #endif
|
cannam@0
|
75 }
|
cannam@0
|
76
|
cannam@0
|
77 pm1 = 0;
|
cannam@0
|
78 pm2 = 0;
|
cannam@0
|
79 feeder = 0;
|
cannam@0
|
80 // std::cerr << "MatchVampPlugin::MatchVampPlugin(" << this << "): extant = " << ++extant << std::endl;
|
cannam@0
|
81 }
|
cannam@0
|
82
|
cannam@0
|
83 MatchVampPlugin::~MatchVampPlugin()
|
cannam@0
|
84 {
|
cannam@0
|
85 // std::cerr << "MatchVampPlugin::~MatchVampPlugin(" << this << "): extant = " << --extant << std::endl;
|
cannam@0
|
86
|
cannam@0
|
87 delete feeder;
|
cannam@0
|
88 delete pm1;
|
cannam@0
|
89 delete pm2;
|
cannam@0
|
90
|
cannam@0
|
91 if (m_locked) {
|
cannam@0
|
92 #ifdef _WIN32
|
cannam@0
|
93 ReleaseMutex(m_serialisingMutex);
|
cannam@0
|
94 #else
|
cannam@0
|
95 pthread_mutex_unlock(&m_serialisingMutex);
|
cannam@0
|
96 #endif
|
cannam@0
|
97 m_locked = false;
|
cannam@0
|
98 }
|
cannam@0
|
99 }
|
cannam@0
|
100
|
cannam@0
|
101 string
|
cannam@0
|
102 MatchVampPlugin::getIdentifier() const
|
cannam@0
|
103 {
|
cannam@0
|
104 return "match";
|
cannam@0
|
105 }
|
cannam@0
|
106
|
cannam@0
|
107 string
|
cannam@0
|
108 MatchVampPlugin::getName() const
|
cannam@0
|
109 {
|
cannam@0
|
110 return "Match Performance Aligner";
|
cannam@0
|
111 }
|
cannam@0
|
112
|
cannam@0
|
113 string
|
cannam@0
|
114 MatchVampPlugin::getDescription() const
|
cannam@0
|
115 {
|
cannam@0
|
116 return "Calculate alignment between two performances in separate channel inputs";
|
cannam@0
|
117 }
|
cannam@0
|
118
|
cannam@0
|
119 string
|
cannam@0
|
120 MatchVampPlugin::getMaker() const
|
cannam@0
|
121 {
|
cannam@0
|
122 return "Simon Dixon (plugin by Chris Cannam)";
|
cannam@0
|
123 }
|
cannam@0
|
124
|
cannam@0
|
125 int
|
cannam@0
|
126 MatchVampPlugin::getPluginVersion() const
|
cannam@0
|
127 {
|
cannam@0
|
128 return 1;
|
cannam@0
|
129 }
|
cannam@0
|
130
|
cannam@0
|
131 string
|
cannam@0
|
132 MatchVampPlugin::getCopyright() const
|
cannam@0
|
133 {
|
cannam@0
|
134 return "GPL";
|
cannam@0
|
135 }
|
cannam@0
|
136
|
cannam@0
|
137 MatchVampPlugin::ParameterList
|
cannam@0
|
138 MatchVampPlugin::getParameterDescriptors() const
|
cannam@0
|
139 {
|
cannam@0
|
140 ParameterList list;
|
cannam@0
|
141
|
cannam@0
|
142 ParameterDescriptor desc;
|
cannam@0
|
143 desc.identifier = "serialise";
|
cannam@0
|
144 desc.name = "Serialise Plugin Invocations";
|
cannam@0
|
145 desc.description = "Reduce potential memory load at the expense of multiprocessor performance by serialising multi-threaded plugin runs";
|
cannam@0
|
146 desc.minValue = 0;
|
cannam@0
|
147 desc.maxValue = 1;
|
cannam@0
|
148 desc.defaultValue = 0;
|
cannam@0
|
149 desc.isQuantized = true;
|
cannam@0
|
150 desc.quantizeStep = 1;
|
cannam@0
|
151 list.push_back(desc);
|
cannam@0
|
152
|
cannam@0
|
153 return list;
|
cannam@0
|
154 }
|
cannam@0
|
155
|
cannam@0
|
156 float
|
cannam@0
|
157 MatchVampPlugin::getParameter(std::string name) const
|
cannam@0
|
158 {
|
cannam@0
|
159 if (name == "serialise") {
|
cannam@0
|
160 return m_serialise ? 1.0 : 0.0;
|
cannam@0
|
161 }
|
cannam@0
|
162 return 0.0;
|
cannam@0
|
163 }
|
cannam@0
|
164
|
cannam@0
|
165 void
|
cannam@0
|
166 MatchVampPlugin::setParameter(std::string name, float value)
|
cannam@0
|
167 {
|
cannam@0
|
168 if (name == "serialise") {
|
cannam@0
|
169 m_serialise = (value > 0.5);
|
Chris@10
|
170 // std::cerr << "MatchVampPlugin::setParameter: set serialise to " << m_serialise << std::endl;
|
cannam@0
|
171 }
|
cannam@0
|
172 }
|
cannam@0
|
173
|
cannam@0
|
174 size_t
|
cannam@0
|
175 MatchVampPlugin::getPreferredStepSize() const
|
cannam@0
|
176 {
|
Chris@15
|
177 return m_inputSampleRate * defaultStepTime;
|
cannam@0
|
178 }
|
cannam@0
|
179
|
cannam@0
|
180 size_t
|
cannam@0
|
181 MatchVampPlugin::getPreferredBlockSize() const
|
cannam@0
|
182 {
|
Chris@15
|
183 return 2048;
|
cannam@0
|
184 }
|
cannam@0
|
185
|
cannam@0
|
186 void
|
Chris@17
|
187 MatchVampPlugin::createMatchers()
|
cannam@0
|
188 {
|
Chris@17
|
189 m_params.hopTime = m_stepTime;
|
Chris@17
|
190 m_params.fftSize = m_blockSize;
|
Chris@17
|
191 pm1 = new Matcher(m_params, 0);
|
Chris@17
|
192 pm2 = new Matcher(m_params, pm1);
|
cannam@0
|
193 pm1->setOtherMatcher(pm2);
|
cannam@0
|
194 feeder = new MatchFeeder(pm1, pm2);
|
cannam@0
|
195 }
|
cannam@0
|
196
|
cannam@0
|
197 bool
|
cannam@0
|
198 MatchVampPlugin::initialise(size_t channels, size_t stepSize, size_t blockSize)
|
cannam@0
|
199 {
|
Chris@10
|
200 if (m_inputSampleRate < sampleRateMin) {
|
Chris@10
|
201 std::cerr << "MatchVampPlugin::MatchVampPlugin: input sample rate "
|
Chris@10
|
202 << m_inputSampleRate << " < min supported rate "
|
Chris@10
|
203 << sampleRateMin << std::endl;
|
Chris@10
|
204 return false;
|
Chris@10
|
205 }
|
cannam@0
|
206 if (channels < getMinChannelCount() ||
|
cannam@0
|
207 channels > getMaxChannelCount()) return false;
|
cannam@1
|
208 if (stepSize > blockSize/2 ||
|
cannam@0
|
209 blockSize != getPreferredBlockSize()) return false;
|
Chris@15
|
210
|
cannam@6
|
211 m_stepSize = stepSize;
|
Chris@15
|
212 m_stepTime = float(stepSize) / m_inputSampleRate;
|
Chris@15
|
213 m_blockSize = blockSize;
|
Chris@15
|
214
|
Chris@15
|
215 createMatchers();
|
cannam@0
|
216 m_begin = true;
|
cannam@0
|
217 m_locked = false;
|
Chris@15
|
218
|
cannam@0
|
219 return true;
|
cannam@0
|
220 }
|
cannam@0
|
221
|
cannam@0
|
222 void
|
cannam@0
|
223 MatchVampPlugin::reset()
|
cannam@0
|
224 {
|
cannam@6
|
225 delete feeder;
|
cannam@6
|
226 delete pm1;
|
cannam@6
|
227 delete pm2;
|
cannam@6
|
228 feeder = 0;
|
cannam@6
|
229 pm1 = 0;
|
cannam@6
|
230 pm2 = 0;
|
cannam@6
|
231
|
cannam@6
|
232 createMatchers();
|
cannam@6
|
233 m_begin = true;
|
cannam@6
|
234 m_locked = false;
|
cannam@0
|
235 }
|
cannam@0
|
236
|
cannam@0
|
237 MatchVampPlugin::OutputList
|
cannam@0
|
238 MatchVampPlugin::getOutputDescriptors() const
|
cannam@0
|
239 {
|
cannam@0
|
240 OutputList list;
|
cannam@0
|
241
|
Chris@15
|
242 float outRate = 1.0 / m_stepTime;
|
cannam@0
|
243
|
cannam@0
|
244 OutputDescriptor desc;
|
cannam@0
|
245 desc.identifier = "path";
|
cannam@0
|
246 desc.name = "Path";
|
cannam@0
|
247 desc.description = "Alignment path";
|
cannam@0
|
248 desc.unit = "";
|
cannam@0
|
249 desc.hasFixedBinCount = true;
|
cannam@0
|
250 desc.binCount = 1;
|
cannam@0
|
251 desc.hasKnownExtents = false;
|
cannam@0
|
252 desc.isQuantized = true;
|
cannam@0
|
253 desc.quantizeStep = 1;
|
cannam@0
|
254 desc.sampleType = OutputDescriptor::VariableSampleRate;
|
cannam@0
|
255 desc.sampleRate = outRate;
|
Chris@16
|
256 m_pathOutNo = list.size();
|
cannam@0
|
257 list.push_back(desc);
|
cannam@0
|
258
|
cannam@0
|
259 desc.identifier = "a_b";
|
cannam@0
|
260 desc.name = "A-B Timeline";
|
cannam@0
|
261 desc.description = "Timing in performance B corresponding to moments in performance A";
|
cannam@0
|
262 desc.unit = "sec";
|
cannam@0
|
263 desc.hasFixedBinCount = true;
|
cannam@0
|
264 desc.binCount = 1;
|
cannam@0
|
265 desc.hasKnownExtents = false;
|
cannam@0
|
266 desc.isQuantized = false;
|
cannam@0
|
267 desc.sampleType = OutputDescriptor::VariableSampleRate;
|
cannam@0
|
268 desc.sampleRate = outRate;
|
Chris@16
|
269 m_abOutNo = list.size();
|
cannam@0
|
270 list.push_back(desc);
|
cannam@0
|
271
|
cannam@0
|
272 desc.identifier = "b_a";
|
cannam@0
|
273 desc.name = "B-A Timeline";
|
cannam@0
|
274 desc.description = "Timing in performance A corresponding to moments in performance B";
|
cannam@0
|
275 desc.unit = "sec";
|
cannam@0
|
276 desc.hasFixedBinCount = true;
|
cannam@0
|
277 desc.binCount = 1;
|
cannam@0
|
278 desc.hasKnownExtents = false;
|
cannam@0
|
279 desc.isQuantized = false;
|
cannam@0
|
280 desc.sampleType = OutputDescriptor::VariableSampleRate;
|
cannam@0
|
281 desc.sampleRate = outRate;
|
Chris@16
|
282 m_baOutNo = list.size();
|
cannam@0
|
283 list.push_back(desc);
|
cannam@0
|
284
|
cannam@0
|
285 desc.identifier = "a_b_divergence";
|
cannam@0
|
286 desc.name = "A-B Divergence";
|
cannam@0
|
287 desc.description = "Difference between timings in performances A and B";
|
cannam@0
|
288 desc.unit = "sec";
|
cannam@0
|
289 desc.hasFixedBinCount = true;
|
cannam@0
|
290 desc.binCount = 1;
|
cannam@0
|
291 desc.hasKnownExtents = false;
|
cannam@0
|
292 desc.isQuantized = false;
|
cannam@0
|
293 desc.sampleType = OutputDescriptor::VariableSampleRate;
|
cannam@0
|
294 desc.sampleRate = outRate;
|
Chris@16
|
295 m_abDivOutNo = list.size();
|
cannam@0
|
296 list.push_back(desc);
|
cannam@0
|
297
|
cannam@0
|
298 desc.identifier = "a_b_temporatio";
|
cannam@0
|
299 desc.name = "A-B Tempo Ratio";
|
cannam@0
|
300 desc.description = "Ratio of tempi between performances A and B";
|
cannam@0
|
301 desc.unit = "";
|
cannam@0
|
302 desc.hasFixedBinCount = true;
|
cannam@0
|
303 desc.binCount = 1;
|
cannam@0
|
304 desc.hasKnownExtents = false;
|
cannam@0
|
305 desc.isQuantized = false;
|
cannam@0
|
306 desc.sampleType = OutputDescriptor::VariableSampleRate;
|
cannam@0
|
307 desc.sampleRate = outRate;
|
Chris@16
|
308 m_abRatioOutNo = list.size();
|
cannam@0
|
309 list.push_back(desc);
|
cannam@0
|
310
|
Chris@15
|
311 desc.identifier = "a_features";
|
Chris@15
|
312 desc.name = "A Features";
|
Chris@15
|
313 desc.description = "Spectral features extracted from performance A";
|
Chris@15
|
314 desc.unit = "";
|
Chris@15
|
315 desc.hasFixedBinCount = true;
|
Chris@17
|
316 desc.binCount = Matcher::getFeatureSize(m_params);
|
Chris@15
|
317 desc.hasKnownExtents = false;
|
Chris@15
|
318 desc.isQuantized = false;
|
Chris@16
|
319 desc.sampleType = OutputDescriptor::FixedSampleRate;
|
Chris@15
|
320 desc.sampleRate = outRate;
|
Chris@16
|
321 m_aFeaturesOutNo = list.size();
|
Chris@16
|
322 list.push_back(desc);
|
Chris@16
|
323
|
Chris@16
|
324 desc.identifier = "b_features";
|
Chris@16
|
325 desc.name = "B Features";
|
Chris@16
|
326 desc.description = "Spectral features extracted from performance B";
|
Chris@16
|
327 desc.unit = "";
|
Chris@16
|
328 desc.hasFixedBinCount = true;
|
Chris@17
|
329 desc.binCount = Matcher::getFeatureSize(m_params);
|
Chris@16
|
330 desc.hasKnownExtents = false;
|
Chris@16
|
331 desc.isQuantized = false;
|
Chris@16
|
332 desc.sampleType = OutputDescriptor::FixedSampleRate;
|
Chris@16
|
333 desc.sampleRate = outRate;
|
Chris@16
|
334 m_bFeaturesOutNo = list.size();
|
Chris@15
|
335 list.push_back(desc);
|
Chris@15
|
336
|
cannam@0
|
337 return list;
|
cannam@0
|
338 }
|
cannam@0
|
339
|
cannam@0
|
340 MatchVampPlugin::FeatureSet
|
cannam@0
|
341 MatchVampPlugin::process(const float *const *inputBuffers,
|
cannam@0
|
342 Vamp::RealTime timestamp)
|
cannam@0
|
343 {
|
cannam@0
|
344 if (m_begin) {
|
cannam@0
|
345 if (!m_locked && m_serialise) {
|
cannam@0
|
346 m_locked = true;
|
cannam@0
|
347 #ifdef _WIN32
|
cannam@0
|
348 WaitForSingleObject(m_serialisingMutex, INFINITE);
|
cannam@0
|
349 #else
|
cannam@0
|
350 pthread_mutex_lock(&m_serialisingMutex);
|
cannam@0
|
351 #endif
|
cannam@0
|
352 }
|
Chris@10
|
353 m_startTime = timestamp;
|
cannam@0
|
354 m_begin = false;
|
cannam@0
|
355 }
|
cannam@0
|
356
|
cannam@0
|
357 // std::cerr << timestamp.toString();
|
cannam@0
|
358
|
Chris@16
|
359 MatchFeeder::Features ff = feeder->feedAndGetFeatures(inputBuffers);
|
Chris@16
|
360
|
Chris@16
|
361 FeatureSet returnFeatures;
|
Chris@16
|
362
|
Chris@16
|
363 Feature f;
|
Chris@16
|
364 f.hasTimestamp = false;
|
Chris@16
|
365
|
Chris@16
|
366 for (int i = 0; i < (int)ff.f1.size(); ++i) {
|
Chris@16
|
367 f.values.clear();
|
Chris@16
|
368 for (int j = 0; j < (int)ff.f1[i].size(); ++j) {
|
Chris@16
|
369 f.values.push_back(ff.f1[i][j]);
|
Chris@16
|
370 }
|
Chris@16
|
371 returnFeatures[m_aFeaturesOutNo].push_back(f);
|
Chris@16
|
372 }
|
Chris@16
|
373
|
Chris@16
|
374 for (int i = 0; i < (int)ff.f2.size(); ++i) {
|
Chris@16
|
375 f.values.clear();
|
Chris@16
|
376 for (int j = 0; j < (int)ff.f2[i].size(); ++j) {
|
Chris@16
|
377 f.values.push_back(ff.f2[i][j]);
|
Chris@16
|
378 }
|
Chris@16
|
379 returnFeatures[m_bFeaturesOutNo].push_back(f);
|
Chris@16
|
380 }
|
cannam@0
|
381
|
cannam@0
|
382 // std::cerr << ".";
|
cannam@0
|
383 // std::cerr << std::endl;
|
cannam@0
|
384
|
Chris@16
|
385 return returnFeatures;
|
cannam@0
|
386 }
|
cannam@0
|
387
|
cannam@0
|
388 MatchVampPlugin::FeatureSet
|
cannam@0
|
389 MatchVampPlugin::getRemainingFeatures()
|
cannam@0
|
390 {
|
cannam@0
|
391 int x = pm2->getFrameCount() - 1;
|
cannam@0
|
392 int y = pm1->getFrameCount() - 1;
|
cannam@0
|
393
|
cannam@0
|
394 Finder *finder = feeder->getFinder();
|
cannam@0
|
395
|
cannam@0
|
396 std::vector<int> pathx;
|
cannam@0
|
397 std::vector<int> pathy;
|
cannam@0
|
398
|
cannam@0
|
399 // std::cerr << "initial x,y = " << x << std::endl;
|
cannam@0
|
400
|
cannam@0
|
401 while (finder->find(y, x) && ((x > 0) || (y > 0))) {
|
cannam@0
|
402
|
cannam@0
|
403 pathx.push_back(x);
|
cannam@0
|
404 pathy.push_back(y);
|
cannam@0
|
405
|
cannam@0
|
406 // std::cerr << pathx.size() << ": (" << x << "," << y << ")" << std::endl;
|
cannam@0
|
407
|
Chris@16
|
408 switch (finder->getDistance() & ADVANCE_BOTH) {
|
cannam@0
|
409 case ADVANCE_THIS: y--; break;
|
cannam@0
|
410 case ADVANCE_OTHER: x--; break;
|
cannam@0
|
411 case ADVANCE_BOTH: x--; y--; break;
|
cannam@0
|
412 default: // this would indicate a bug, but we wouldn't want to hang
|
cannam@0
|
413 std::cerr << "WARNING: MatchVampPlugin::getRemainingFeatures: Neither matcher advanced in path backtrack at (" << x << "," << y << ")" << std::endl;
|
cannam@0
|
414 if (x > y) x--; else y--; break;
|
cannam@0
|
415 }
|
cannam@0
|
416 }
|
cannam@0
|
417
|
cannam@0
|
418 std::reverse(pathx.begin(), pathx.end());
|
cannam@0
|
419 std::reverse(pathy.begin(), pathy.end());
|
cannam@0
|
420
|
cannam@0
|
421 int smoothedLen = Path().smooth(pathx, pathy, pathx.size());
|
cannam@0
|
422
|
cannam@0
|
423 FeatureSet returnFeatures;
|
cannam@0
|
424
|
cannam@0
|
425 int prevx = 0;
|
cannam@0
|
426 int prevy = 0;
|
cannam@0
|
427
|
cannam@0
|
428 for (int i = 0; i < smoothedLen; ++i) {
|
cannam@0
|
429
|
cannam@0
|
430 int x = pathx[i];
|
cannam@0
|
431 int y = pathy[i];
|
cannam@0
|
432
|
cannam@0
|
433 Vamp::RealTime xt = Vamp::RealTime::frame2RealTime
|
Chris@15
|
434 (x * m_stepSize, lrintf(m_inputSampleRate));
|
cannam@0
|
435 Vamp::RealTime yt = Vamp::RealTime::frame2RealTime
|
Chris@15
|
436 (y * m_stepSize, lrintf(m_inputSampleRate));
|
cannam@0
|
437
|
cannam@0
|
438 Feature feature;
|
cannam@0
|
439 feature.hasTimestamp = true;
|
Chris@10
|
440 feature.timestamp = m_startTime + xt;
|
cannam@0
|
441 feature.values.clear();
|
cannam@0
|
442 feature.values.push_back(yt.sec + double(yt.nsec)/1.0e9);
|
Chris@16
|
443 returnFeatures[m_pathOutNo].push_back(feature);
|
cannam@0
|
444
|
cannam@0
|
445 if (x != prevx) {
|
cannam@0
|
446
|
cannam@0
|
447 feature.hasTimestamp = true;
|
Chris@10
|
448 feature.timestamp = m_startTime + xt;
|
cannam@0
|
449 feature.values.clear();
|
cannam@0
|
450 feature.values.push_back(yt.sec + yt.msec()/1000.0);
|
Chris@16
|
451 returnFeatures[m_abOutNo].push_back(feature);
|
cannam@0
|
452
|
cannam@0
|
453 Vamp::RealTime diff = yt - xt;
|
cannam@0
|
454 feature.values.clear();
|
cannam@0
|
455 feature.values.push_back(diff.sec + diff.msec()/1000.0);
|
Chris@16
|
456 returnFeatures[m_abDivOutNo].push_back(feature);
|
cannam@0
|
457
|
cannam@0
|
458 if (i > 0) {
|
cannam@0
|
459 int lookback = 100; //!!! arbitrary
|
cannam@0
|
460 if (lookback > i) lookback = i;
|
cannam@0
|
461 int xdiff = x - pathx[i-lookback];
|
cannam@0
|
462 int ydiff = y - pathy[i-lookback];
|
cannam@0
|
463 if (xdiff != 0 && ydiff != 0) {
|
cannam@0
|
464 float ratio = float(ydiff)/float(xdiff);
|
cannam@0
|
465 if (ratio < 8 && ratio > (1.0/8)) { //!!! just for now, since we aren't dealing properly with silence yet
|
cannam@0
|
466 feature.values.clear();
|
cannam@0
|
467 feature.values.push_back(ratio);
|
Chris@16
|
468 returnFeatures[m_abRatioOutNo].push_back(feature);
|
cannam@0
|
469 }
|
cannam@0
|
470 }
|
cannam@0
|
471 }
|
cannam@0
|
472 }
|
cannam@0
|
473
|
cannam@0
|
474 if (y != prevy) {
|
cannam@0
|
475 feature.hasTimestamp = true;
|
Chris@10
|
476 feature.timestamp = m_startTime + yt;
|
cannam@0
|
477 feature.values.clear();
|
cannam@0
|
478 feature.values.push_back(xt.sec + xt.msec()/1000.0);
|
Chris@16
|
479 returnFeatures[m_baOutNo].push_back(feature);
|
cannam@0
|
480 }
|
cannam@0
|
481
|
cannam@0
|
482 prevx = x;
|
cannam@0
|
483 prevy = y;
|
cannam@0
|
484 }
|
cannam@0
|
485
|
cannam@0
|
486 delete feeder;
|
cannam@0
|
487 delete pm1;
|
cannam@0
|
488 delete pm2;
|
cannam@0
|
489 feeder = 0;
|
cannam@0
|
490 pm1 = 0;
|
cannam@0
|
491 pm2 = 0;
|
cannam@0
|
492
|
cannam@0
|
493 if (m_locked) {
|
cannam@0
|
494 #ifdef _WIN32
|
cannam@0
|
495 ReleaseMutex(m_serialisingMutex);
|
cannam@0
|
496 #else
|
cannam@0
|
497 pthread_mutex_unlock(&m_serialisingMutex);
|
cannam@0
|
498 #endif
|
cannam@0
|
499 m_locked = false;
|
cannam@0
|
500 }
|
cannam@0
|
501
|
cannam@0
|
502 return returnFeatures;
|
cannam@0
|
503
|
cannam@0
|
504
|
cannam@0
|
505 /*
|
cannam@0
|
506 for (int i = 0; i < smoothedLen; ++i) {
|
cannam@0
|
507 std::cerr << i << ": [" << pathx[i] << "," << pathy[i] << "]" << std::endl;
|
cannam@0
|
508 }
|
cannam@0
|
509
|
cannam@0
|
510 std::cerr << std::endl;
|
cannam@0
|
511 std::cerr << "File: A" << std::endl;
|
cannam@0
|
512 std::cerr << "Marks: -1" << std::endl;
|
cannam@0
|
513 std::cerr << "FixedPoints: true 0" << std::endl;
|
cannam@0
|
514 std::cerr << "0" << std::endl;
|
cannam@0
|
515 std::cerr << "0" << std::endl;
|
cannam@0
|
516 std::cerr << "0" << std::endl;
|
cannam@0
|
517 std::cerr << "0" << std::endl;
|
cannam@0
|
518 std::cerr << "File: B" << std::endl;
|
cannam@0
|
519 std::cerr << "Marks: 0" << std::endl;
|
cannam@0
|
520 std::cerr << "FixedPoints: true 0" << std::endl;
|
cannam@0
|
521 std::cerr << "0.02" << std::endl;
|
cannam@0
|
522 std::cerr << "0.02" << std::endl;
|
cannam@0
|
523
|
cannam@0
|
524 std::cerr << smoothedLen << std::endl;
|
cannam@0
|
525 for (int i = 0; i < smoothedLen; ++i) {
|
cannam@0
|
526 std::cerr << pathx[i] << std::endl;
|
cannam@0
|
527 }
|
cannam@0
|
528
|
cannam@0
|
529 std::cerr << smoothedLen << std::endl;
|
cannam@0
|
530 for (int i = 0; i < smoothedLen; ++i) {
|
cannam@0
|
531 std::cerr << pathy[i] << std::endl;
|
cannam@0
|
532 }
|
cannam@0
|
533 */
|
cannam@0
|
534 }
|
cannam@0
|
535
|
cannam@0
|
536 static Vamp::PluginAdapter<MatchVampPlugin> mvpAdapter;
|
cannam@0
|
537
|
cannam@0
|
538 const VampPluginDescriptor *vampGetPluginDescriptor(unsigned int version,
|
cannam@0
|
539 unsigned int index)
|
cannam@0
|
540 {
|
cannam@0
|
541 if (version < 1) return 0;
|
cannam@0
|
542
|
cannam@0
|
543 switch (index) {
|
cannam@0
|
544 case 0: return mvpAdapter.getDescriptor();
|
cannam@0
|
545 default: return 0;
|
cannam@0
|
546 }
|
cannam@0
|
547 }
|