cannam@41: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ cannam@41: cannam@41: /* cannam@41: Vamp cannam@41: cannam@41: An API for audio analysis and feature extraction plugins. cannam@41: cannam@41: Centre for Digital Music, Queen Mary, University of London. cannam@41: This file copyright 2006 Dan Stowell. cannam@41: cannam@41: Permission is hereby granted, free of charge, to any person cannam@41: obtaining a copy of this software and associated documentation cannam@41: files (the "Software"), to deal in the Software without cannam@41: restriction, including without limitation the rights to use, copy, cannam@41: modify, merge, publish, distribute, sublicense, and/or sell copies cannam@41: of the Software, and to permit persons to whom the Software is cannam@41: furnished to do so, subject to the following conditions: cannam@41: cannam@41: The above copyright notice and this permission notice shall be cannam@41: included in all copies or substantial portions of the Software. cannam@41: cannam@41: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, cannam@41: EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF cannam@41: MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND cannam@41: NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR cannam@41: ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF cannam@41: CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION cannam@41: WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. cannam@41: cannam@41: Except as contained in this notice, the names of the Centre for cannam@41: Digital Music; Queen Mary, University of London; and Chris Cannam cannam@41: shall not be used in advertising or otherwise to promote the sale, cannam@41: use or other dealings in this Software without prior written cannam@41: authorization. cannam@41: */ cannam@41: cannam@41: #ifndef _AMPLITUDE_FOLLOWER_PLUGIN_H_ cannam@41: #define _AMPLITUDE_FOLLOWER_PLUGIN_H_ cannam@41: cannam@64: #include "vamp-sdk/Plugin.h" cannam@41: cannam@54: /** cannam@54: * Example plugin implementing the SuperCollider amplitude follower cannam@54: * function. cannam@54: */ cannam@54: cannam@41: class AmplitudeFollower : public Vamp::Plugin cannam@41: { cannam@41: public: cannam@41: AmplitudeFollower(float inputSampleRate); cannam@41: virtual ~AmplitudeFollower(); cannam@41: cannam@41: bool initialise(size_t channels, size_t stepSize, size_t blockSize); cannam@41: void reset(); cannam@41: cannam@41: InputDomain getInputDomain() const { return TimeDomain; } cannam@41: cannam@49: std::string getIdentifier() const; cannam@41: std::string getName() const; cannam@41: std::string getDescription() const; cannam@41: std::string getMaker() const; cannam@41: int getPluginVersion() const; cannam@41: std::string getCopyright() const; cannam@41: cannam@41: OutputList getOutputDescriptors() const; cannam@41: cannam@41: ParameterList getParameterDescriptors() const; cannam@49: float getParameter(std::string paramid) const; cannam@49: void setParameter(std::string paramid, float newval); cannam@41: cannam@47: FeatureSet process(const float *const *inputBuffers, cannam@47: Vamp::RealTime timestamp); cannam@41: cannam@41: FeatureSet getRemainingFeatures(); cannam@41: cannam@41: protected: cannam@41: size_t m_stepSize; cannam@41: float m_previn; cannam@41: float m_clampcoef; cannam@41: float m_relaxcoef; cannam@41: }; cannam@41: cannam@41: cannam@41: #endif