c@35
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
c@69
|
2 /*
|
c@69
|
3 Constant-Q library
|
c@69
|
4 Copyright (c) 2013-2014 Queen Mary, University of London
|
c@69
|
5
|
c@69
|
6 Permission is hereby granted, free of charge, to any person
|
c@69
|
7 obtaining a copy of this software and associated documentation
|
c@69
|
8 files (the "Software"), to deal in the Software without
|
c@69
|
9 restriction, including without limitation the rights to use, copy,
|
c@69
|
10 modify, merge, publish, distribute, sublicense, and/or sell copies
|
c@69
|
11 of the Software, and to permit persons to whom the Software is
|
c@69
|
12 furnished to do so, subject to the following conditions:
|
c@69
|
13
|
c@69
|
14 The above copyright notice and this permission notice shall be
|
c@69
|
15 included in all copies or substantial portions of the Software.
|
c@69
|
16
|
c@69
|
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
c@69
|
18 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
c@69
|
19 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
c@69
|
20 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
c@69
|
21 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
c@69
|
22 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
c@69
|
23 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
c@69
|
24
|
c@69
|
25 Except as contained in this notice, the names of the Centre for
|
c@69
|
26 Digital Music; Queen Mary, University of London; and Chris Cannam
|
c@69
|
27 shall not be used in advertising or otherwise to promote the sale,
|
c@69
|
28 use or other dealings in this Software without prior written
|
c@69
|
29 authorization.
|
c@69
|
30 */
|
c@35
|
31
|
c@35
|
32 #ifndef CQVAMP_H
|
c@35
|
33 #define CQVAMP_H
|
c@35
|
34
|
c@35
|
35 #include <vamp-sdk/Plugin.h>
|
c@35
|
36
|
c@121
|
37 #include "cq/CQSpectrogram.h"
|
c@75
|
38
|
c@35
|
39 class ConstantQ;
|
c@35
|
40
|
c@35
|
41 class CQVamp : public Vamp::Plugin
|
c@35
|
42 {
|
c@35
|
43 public:
|
c@109
|
44 CQVamp(float inputSampleRate, bool midiPitchParameters);
|
c@35
|
45 virtual ~CQVamp();
|
c@35
|
46
|
c@35
|
47 bool initialise(size_t channels, size_t stepSize, size_t blockSize);
|
c@35
|
48 void reset();
|
c@35
|
49
|
c@35
|
50 InputDomain getInputDomain() const { return TimeDomain; }
|
c@35
|
51
|
c@35
|
52 std::string getIdentifier() const;
|
c@35
|
53 std::string getName() const;
|
c@35
|
54 std::string getDescription() const;
|
c@35
|
55 std::string getMaker() const;
|
c@35
|
56 int getPluginVersion() const;
|
c@35
|
57 std::string getCopyright() const;
|
c@35
|
58
|
c@35
|
59 ParameterList getParameterDescriptors() const;
|
c@35
|
60 float getParameter(std::string) const;
|
c@35
|
61 void setParameter(std::string, float);
|
c@35
|
62
|
c@35
|
63 size_t getPreferredStepSize() const;
|
c@35
|
64 size_t getPreferredBlockSize() const;
|
c@35
|
65
|
c@35
|
66 OutputList getOutputDescriptors() const;
|
c@35
|
67
|
c@35
|
68 FeatureSet process(const float *const *inputBuffers,
|
c@35
|
69 Vamp::RealTime timestamp);
|
c@35
|
70
|
c@35
|
71 FeatureSet getRemainingFeatures();
|
c@35
|
72
|
c@35
|
73 protected:
|
c@109
|
74 bool m_midiPitchParameters;
|
c@55
|
75 int m_minMIDIPitch;
|
c@55
|
76 int m_maxMIDIPitch;
|
c@55
|
77 float m_tuningFrequency;
|
c@55
|
78 int m_bpo;
|
c@190
|
79 int m_atomOverlap;
|
c@190
|
80 bool m_useDraftDecimator;
|
c@90
|
81 CQSpectrogram::Interpolation m_interpolation;
|
c@55
|
82
|
c@90
|
83 CQSpectrogram *m_cq;
|
c@35
|
84 float m_maxFrequency;
|
c@35
|
85 float m_minFrequency;
|
c@35
|
86 int m_stepSize;
|
c@35
|
87 int m_blockSize;
|
c@36
|
88
|
c@53
|
89 Vamp::RealTime m_startTime;
|
c@53
|
90 bool m_haveStartTime;
|
c@53
|
91 int m_columnCount;
|
c@53
|
92
|
c@109
|
93 std::string noteName(int i) const;
|
c@109
|
94
|
c@36
|
95 std::vector<float> m_prevFeature;
|
c@36
|
96 FeatureSet convertToFeatures(const std::vector<std::vector<double> > &);
|
c@35
|
97 };
|
c@35
|
98
|
c@35
|
99
|
c@35
|
100 #endif
|