Mercurial > hg > vampy
diff PyPlugin.h @ 18:e9cf443b18f5
* Add duration support (Vamp 2.0)
author | cannam |
---|---|
date | Fri, 10 Jul 2009 15:14:24 +0000 |
parents | a4c955e9a70b |
children | 1ae350e97f93 |
line wrap: on
line diff
--- a/PyPlugin.h Thu Jun 25 16:23:30 2009 +0000 +++ b/PyPlugin.h Fri Jul 10 15:14:24 2009 +0000 @@ -1,3 +1,4 @@ +/* -*- c-basic-offset: 8 indent-tabs-mode: t -*- */ /* Vamp @@ -45,6 +46,7 @@ #include "Mutex.h" //fields in OutputDescriptor +namespace o { enum eOutDescriptors { not_found, identifier, @@ -61,8 +63,10 @@ quantizeStep, sampleType, sampleRate, + hasDuration, endNode }; +} namespace p { enum eParmDescriptors { @@ -88,6 +92,8 @@ unknown, hasTimestamp, timeStamp, + hasDuration, + duration, values, label }; @@ -101,11 +107,11 @@ class PyPlugin : public Vamp::Plugin { public: - PyPlugin(std::string plugin,float inputSampleRate, PyObject *pyInstance); - virtual ~PyPlugin(); + PyPlugin(std::string plugin,float inputSampleRate, PyObject *pyInstance); + virtual ~PyPlugin(); - bool initialise(size_t channels, size_t stepSize, size_t blockSize); - void reset(); + bool initialise(size_t channels, size_t stepSize, size_t blockSize); + void reset(); InputDomain getInputDomain() const; size_t getPreferredBlockSize() const; @@ -113,28 +119,28 @@ size_t getMinChannelCount() const; size_t getMaxChannelCount() const; - std::string getIdentifier() const; - std::string getName() const; - std::string getDescription() const; - std::string getMaker() const; - int getPluginVersion() const; - std::string getCopyright() const; - - OutputList getOutputDescriptors() const; - ParameterList getParameterDescriptors() const; + std::string getIdentifier() const; + std::string getName() const; + std::string getDescription() const; + std::string getMaker() const; + int getPluginVersion() const; + std::string getCopyright() const; + + OutputList getOutputDescriptors() const; + ParameterList getParameterDescriptors() const; float getParameter(std::string paramid) const; void setParameter(std::string paramid, float newval); -FeatureSet process(const float *const *inputBuffers, - Vamp::RealTime timestamp); + FeatureSet process(const float *const *inputBuffers, + Vamp::RealTime timestamp); - FeatureSet getRemainingFeatures(); + FeatureSet getRemainingFeatures(); protected: PyObject *m_pyInstance; - size_t m_stepSize; - size_t m_blockSize; - size_t m_channels; + size_t m_stepSize; + size_t m_blockSize; + size_t m_channels; std::string m_plugin; std::string m_class; std::string m_path;