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@5
|
37 #ifndef _VAMP_PLUGIN_ADAPTER_H_
|
cannam@5
|
38 #define _VAMP_PLUGIN_ADAPTER_H_
|
cannam@3
|
39
|
cannam@10
|
40 #include <vamp/vamp.h>
|
cannam@10
|
41
|
cannam@3
|
42 #include "Plugin.h"
|
cannam@3
|
43
|
cannam@3
|
44 #include <map>
|
cannam@3
|
45
|
cannam@3
|
46 namespace Vamp {
|
cannam@3
|
47
|
cannam@3
|
48 class PluginAdapterBase
|
cannam@3
|
49 {
|
cannam@3
|
50 public:
|
cannam@3
|
51 virtual ~PluginAdapterBase();
|
cannam@3
|
52 const VampPluginDescriptor *getDescriptor();
|
cannam@3
|
53
|
cannam@3
|
54 protected:
|
cannam@3
|
55 PluginAdapterBase();
|
cannam@3
|
56
|
cannam@3
|
57 virtual Plugin *createPlugin(float inputSampleRate) = 0;
|
cannam@3
|
58
|
cannam@3
|
59 static VampPluginHandle vampInstantiate(const VampPluginDescriptor *desc,
|
cannam@3
|
60 float inputSampleRate);
|
cannam@3
|
61
|
cannam@3
|
62 static void vampCleanup(VampPluginHandle handle);
|
cannam@3
|
63
|
cannam@3
|
64 static int vampInitialise(VampPluginHandle handle, unsigned int channels,
|
cannam@3
|
65 unsigned int stepSize, unsigned int blockSize);
|
cannam@3
|
66
|
cannam@3
|
67 static void vampReset(VampPluginHandle handle);
|
cannam@3
|
68
|
cannam@3
|
69 static float vampGetParameter(VampPluginHandle handle, int param);
|
cannam@3
|
70 static void vampSetParameter(VampPluginHandle handle, int param, float value);
|
cannam@3
|
71
|
cannam@3
|
72 static unsigned int vampGetCurrentProgram(VampPluginHandle handle);
|
cannam@3
|
73 static void vampSelectProgram(VampPluginHandle handle, unsigned int program);
|
cannam@3
|
74
|
cannam@3
|
75 static unsigned int vampGetPreferredStepSize(VampPluginHandle handle);
|
cannam@3
|
76 static unsigned int vampGetPreferredBlockSize(VampPluginHandle handle);
|
cannam@3
|
77 static unsigned int vampGetMinChannelCount(VampPluginHandle handle);
|
cannam@3
|
78 static unsigned int vampGetMaxChannelCount(VampPluginHandle handle);
|
cannam@3
|
79
|
cannam@3
|
80 static unsigned int vampGetOutputCount(VampPluginHandle handle);
|
cannam@3
|
81
|
cannam@3
|
82 static VampOutputDescriptor *vampGetOutputDescriptor(VampPluginHandle handle,
|
cannam@3
|
83 unsigned int i);
|
cannam@3
|
84
|
cannam@3
|
85 static void vampReleaseOutputDescriptor(VampOutputDescriptor *desc);
|
cannam@3
|
86
|
cannam@3
|
87 static VampFeatureList **vampProcess(VampPluginHandle handle,
|
cannam@3
|
88 float **inputBuffers,
|
cannam@3
|
89 int sec,
|
cannam@3
|
90 int nsec);
|
cannam@3
|
91
|
cannam@3
|
92 static VampFeatureList **vampGetRemainingFeatures(VampPluginHandle handle);
|
cannam@3
|
93
|
cannam@3
|
94 static void vampReleaseFeatureSet(VampFeatureList **fs);
|
cannam@3
|
95
|
cannam@3
|
96 void cleanup(Plugin *plugin);
|
cannam@3
|
97 void checkOutputMap(Plugin *plugin);
|
cannam@3
|
98 unsigned int getOutputCount(Plugin *plugin);
|
cannam@3
|
99 VampOutputDescriptor *getOutputDescriptor(Plugin *plugin,
|
cannam@3
|
100 unsigned int i);
|
cannam@3
|
101 VampFeatureList **process(Plugin *plugin,
|
cannam@3
|
102 float **inputBuffers,
|
cannam@3
|
103 int sec, int nsec);
|
cannam@3
|
104 VampFeatureList **getRemainingFeatures(Plugin *plugin);
|
cannam@3
|
105 VampFeatureList **convertFeatures(const Plugin::FeatureSet &features);
|
cannam@3
|
106
|
cannam@3
|
107 typedef std::map<const void *, PluginAdapterBase *> AdapterMap;
|
cannam@3
|
108 static AdapterMap m_adapterMap;
|
cannam@3
|
109 static PluginAdapterBase *lookupAdapter(VampPluginHandle);
|
cannam@3
|
110
|
cannam@3
|
111 bool m_populated;
|
cannam@3
|
112 VampPluginDescriptor m_descriptor;
|
cannam@3
|
113 Plugin::ParameterList m_parameters;
|
cannam@3
|
114 Plugin::ProgramList m_programs;
|
cannam@3
|
115
|
cannam@3
|
116 typedef std::map<Plugin *, Plugin::OutputList *> OutputMap;
|
cannam@3
|
117 OutputMap m_pluginOutputs;
|
cannam@3
|
118
|
cannam@3
|
119 typedef std::map<Plugin *, VampFeature ***> FeatureBufferMap;
|
cannam@3
|
120 FeatureBufferMap m_pluginFeatures;
|
cannam@3
|
121 };
|
cannam@3
|
122
|
cannam@3
|
123 template <typename P>
|
cannam@3
|
124 class PluginAdapter : public PluginAdapterBase
|
cannam@3
|
125 {
|
cannam@3
|
126 public:
|
cannam@3
|
127 PluginAdapter() : PluginAdapterBase() { }
|
cannam@3
|
128 ~PluginAdapter() { }
|
cannam@3
|
129
|
cannam@3
|
130 protected:
|
cannam@3
|
131 Plugin *createPlugin(float inputSampleRate) {
|
cannam@3
|
132 P *p = new P(inputSampleRate);
|
cannam@3
|
133 Plugin *plugin = dynamic_cast<Plugin *>(p);
|
cannam@3
|
134 if (!plugin) {
|
cannam@3
|
135 std::cerr << "ERROR: PluginAdapter::createPlugin: "
|
cannam@3
|
136 << "Template type is not a plugin!"
|
cannam@3
|
137 << std::endl;
|
cannam@3
|
138 delete p;
|
cannam@3
|
139 return 0;
|
cannam@3
|
140 }
|
cannam@3
|
141 return plugin;
|
cannam@3
|
142 }
|
cannam@3
|
143 };
|
cannam@3
|
144
|
cannam@3
|
145 }
|
cannam@3
|
146
|
cannam@3
|
147 #endif
|
cannam@3
|
148
|