Mercurial > hg > vamp-test-plugin
comparison VampTestPlugin.h @ 0:21d94fc628c8
Start on plugin that provides test outputs for each supported format
author | Chris Cannam |
---|---|
date | Thu, 21 Mar 2013 19:22:16 +0000 |
parents | |
children | 72c80798371e |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:21d94fc628c8 |
---|---|
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 _VAMP_TEST_PLUGIN_H_ | |
9 #define _VAMP_TEST_PLUGIN_H_ | |
10 | |
11 #include <vamp-sdk/Plugin.h> | |
12 | |
13 using std::string; | |
14 | |
15 | |
16 class VampTestPlugin : public Vamp::Plugin | |
17 { | |
18 public: | |
19 VampTestPlugin(float inputSampleRate); | |
20 virtual ~VampTestPlugin(); | |
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 |