annotate 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
rev   line source
cannam@41 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
cannam@41 2
cannam@41 3 /*
cannam@41 4 Vamp
cannam@41 5
cannam@41 6 An API for audio analysis and feature extraction plugins.
cannam@41 7
cannam@41 8 Centre for Digital Music, Queen Mary, University of London.
cannam@41 9 This file copyright 2006 Dan Stowell.
cannam@41 10
cannam@41 11 Permission is hereby granted, free of charge, to any person
cannam@41 12 obtaining a copy of this software and associated documentation
cannam@41 13 files (the "Software"), to deal in the Software without
cannam@41 14 restriction, including without limitation the rights to use, copy,
cannam@41 15 modify, merge, publish, distribute, sublicense, and/or sell copies
cannam@41 16 of the Software, and to permit persons to whom the Software is
cannam@41 17 furnished to do so, subject to the following conditions:
cannam@41 18
cannam@41 19 The above copyright notice and this permission notice shall be
cannam@41 20 included in all copies or substantial portions of the Software.
cannam@41 21
cannam@41 22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
cannam@41 23 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
cannam@41 24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
cannam@41 25 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
cannam@41 26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
cannam@41 27 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
cannam@41 28 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
cannam@41 29
cannam@41 30 Except as contained in this notice, the names of the Centre for
cannam@41 31 Digital Music; Queen Mary, University of London; and Chris Cannam
cannam@41 32 shall not be used in advertising or otherwise to promote the sale,
cannam@41 33 use or other dealings in this Software without prior written
cannam@41 34 authorization.
cannam@41 35 */
cannam@41 36
cannam@41 37 #ifndef _AMPLITUDE_FOLLOWER_PLUGIN_H_
cannam@41 38 #define _AMPLITUDE_FOLLOWER_PLUGIN_H_
cannam@41 39
cannam@41 40 #include "Plugin.h"
cannam@41 41
cannam@41 42 class AmplitudeFollower : public Vamp::Plugin
cannam@41 43 {
cannam@41 44 public:
cannam@41 45 AmplitudeFollower(float inputSampleRate);
cannam@41 46 virtual ~AmplitudeFollower();
cannam@41 47
cannam@41 48 bool initialise(size_t channels, size_t stepSize, size_t blockSize);
cannam@41 49 void reset();
cannam@41 50
cannam@41 51 InputDomain getInputDomain() const { return TimeDomain; }
cannam@41 52
cannam@49 53 std::string getIdentifier() const;
cannam@41 54 std::string getName() const;
cannam@41 55 std::string getDescription() const;
cannam@41 56 std::string getMaker() const;
cannam@41 57 int getPluginVersion() const;
cannam@41 58 std::string getCopyright() const;
cannam@41 59
cannam@41 60 OutputList getOutputDescriptors() const;
cannam@41 61
cannam@41 62 ParameterList getParameterDescriptors() const;
cannam@49 63 float getParameter(std::string paramid) const;
cannam@49 64 void setParameter(std::string paramid, float newval);
cannam@41 65
cannam@47 66 FeatureSet process(const float *const *inputBuffers,
cannam@47 67 Vamp::RealTime timestamp);
cannam@41 68
cannam@41 69 FeatureSet getRemainingFeatures();
cannam@41 70
cannam@41 71 protected:
cannam@41 72 size_t m_stepSize;
cannam@41 73 float m_previn;
cannam@41 74 float m_clampcoef;
cannam@41 75 float m_relaxcoef;
cannam@41 76 };
cannam@41 77
cannam@41 78
cannam@41 79 #endif