Mercurial > hg > vamp-plugin-sdk
comparison skeleton/MyPlugin.h @ 283:6c9f10b8a53a
* Add skeleton
author | cannam |
---|---|
date | Thu, 23 Apr 2009 08:59:24 +0000 |
parents | |
children | 6c38ae0a25e5 |
comparison
equal
deleted
inserted
replaced
282:e0b7a35ea18e | 283:6c9f10b8a53a |
---|---|
1 | |
2 // This is a skeleton file for use in creating your own plugin | |
3 // libraries. Replace MyPlugin and myPlugin throughout with the name | |
4 // of your first plugin class, and fill in the gaps as appropriate. | |
5 | |
6 | |
7 // Remember to use a different guard symbol in each header! | |
8 #ifndef _MY_PLUGIN_H_ | |
9 #define _MY_PLUGIN_H_ | |
10 | |
11 #include <vamp-sdk/Plugin.h> | |
12 | |
13 using std::string; | |
14 | |
15 | |
16 class MyPlugin : public Vamp::Plugin | |
17 { | |
18 public: | |
19 MyPlugin(float inputSampleRate); | |
20 virtual ~MyPlugin(); | |
21 | |
22 string getIdentifier() const; | |
23 string getName() const; | |
24 string getDescription() const; | |
25 string getMaker() const; | |
26 int getPluginVersion() const; | |
27 string getCopyright() const; | |
28 | |
29 InputDomain getInputDomain() const; | |
30 size_t getPreferredBlockSize() const; | |
31 size_t getPreferredStepSize() const; | |
32 size_t getMinChannelCount() const; | |
33 size_t getMaxChannelCount() const; | |
34 | |
35 ParameterList getParameterDescriptors() const; | |
36 float getParameter(string identifier) const; | |
37 void setParameter(string identifier, float value); | |
38 | |
39 ProgramList getPrograms() const; | |
40 string getCurrentProgram() const; | |
41 void selectProgram(string name); | |
42 | |
43 OutputList getOutputDescriptors() const; | |
44 | |
45 bool initialise(size_t channels, size_t stepSize, size_t blockSize); | |
46 void reset(); | |
47 | |
48 FeatureSet process(const float *const *inputBuffers, | |
49 Vamp::RealTime timestamp); | |
50 | |
51 FeatureSet getRemainingFeatures(); | |
52 | |
53 protected: | |
54 // plugin-specific data and methods go here | |
55 }; | |
56 | |
57 | |
58 | |
59 #endif |