Mercurial > hg > vamp-plugin-sdk
diff examples/AmplitudeFollower.h @ 49:aa64a46320d4
* Rename "name" and "description" to "identifier" and "name"; add new
"description" that actually contains a description
author | cannam |
---|---|
date | Mon, 26 Feb 2007 18:08:48 +0000 |
parents | be8fdfe25693 |
children | 933fee59d33a |
line wrap: on
line diff
--- a/examples/AmplitudeFollower.h Thu Jan 25 13:39:31 2007 +0000 +++ b/examples/AmplitudeFollower.h Mon Feb 26 18:08:48 2007 +0000 @@ -50,6 +50,7 @@ InputDomain getInputDomain() const { return TimeDomain; } + std::string getIdentifier() const; std::string getName() const; std::string getDescription() const; std::string getMaker() const; @@ -59,8 +60,8 @@ OutputList getOutputDescriptors() const; ParameterList getParameterDescriptors() const; - float getParameter(std::string paramname) const; - void setParameter(std::string paramname, float newval); + float getParameter(std::string paramid) const; + void setParameter(std::string paramid, float newval); FeatureSet process(const float *const *inputBuffers, Vamp::RealTime timestamp);