c@27
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
c@27
|
2
|
c@27
|
3 /*
|
c@27
|
4 QM Vamp Plugin Set
|
c@27
|
5
|
c@27
|
6 Centre for Digital Music, Queen Mary, University of London.
|
c@135
|
7
|
c@135
|
8 This program is free software; you can redistribute it and/or
|
c@135
|
9 modify it under the terms of the GNU General Public License as
|
c@135
|
10 published by the Free Software Foundation; either version 2 of the
|
c@135
|
11 License, or (at your option) any later version. See the file
|
c@135
|
12 COPYING included with this distribution for more information.
|
c@27
|
13 */
|
c@27
|
14
|
c@27
|
15 #ifndef _ONSET_DETECT_PLUGIN_H_
|
c@27
|
16 #define _ONSET_DETECT_PLUGIN_H_
|
c@27
|
17
|
c@27
|
18 #include <vamp-sdk/Plugin.h>
|
c@27
|
19
|
c@27
|
20 class OnsetDetectorData;
|
c@27
|
21
|
c@27
|
22 class OnsetDetector : public Vamp::Plugin
|
c@27
|
23 {
|
c@27
|
24 public:
|
c@27
|
25 OnsetDetector(float inputSampleRate);
|
c@27
|
26 virtual ~OnsetDetector();
|
c@27
|
27
|
c@27
|
28 bool initialise(size_t channels, size_t stepSize, size_t blockSize);
|
c@27
|
29 void reset();
|
c@27
|
30
|
c@27
|
31 InputDomain getInputDomain() const { return FrequencyDomain; }
|
c@27
|
32
|
c@27
|
33 std::string getIdentifier() const;
|
c@27
|
34 std::string getName() const;
|
c@27
|
35 std::string getDescription() const;
|
c@27
|
36 std::string getMaker() const;
|
c@27
|
37 int getPluginVersion() const;
|
c@27
|
38 std::string getCopyright() const;
|
c@27
|
39
|
c@27
|
40 ParameterList getParameterDescriptors() const;
|
c@27
|
41 float getParameter(std::string) const;
|
c@27
|
42 void setParameter(std::string, float);
|
c@27
|
43
|
c@29
|
44 ProgramList getPrograms() const;
|
c@29
|
45 std::string getCurrentProgram() const;
|
c@29
|
46 void selectProgram(std::string program);
|
c@29
|
47
|
c@27
|
48 size_t getPreferredStepSize() const;
|
c@27
|
49 size_t getPreferredBlockSize() const;
|
c@27
|
50
|
c@27
|
51 OutputList getOutputDescriptors() const;
|
c@27
|
52
|
c@27
|
53 FeatureSet process(const float *const *inputBuffers,
|
c@27
|
54 Vamp::RealTime timestamp);
|
c@27
|
55
|
c@27
|
56 FeatureSet getRemainingFeatures();
|
c@27
|
57
|
c@27
|
58 protected:
|
c@27
|
59 OnsetDetectorData *m_d;
|
c@27
|
60 int m_dfType;
|
c@27
|
61 float m_sensitivity;
|
c@30
|
62 bool m_whiten;
|
c@29
|
63 std::string m_program;
|
c@32
|
64 static float m_preferredStepSecs;
|
c@27
|
65 };
|
c@27
|
66
|
c@27
|
67
|
c@27
|
68 #endif
|