annotate src/vamp-hostsdk/PluginWrapper.cpp @ 233:521734d2b498 distinct-libraries

* Flatten directory tree a bit, update doxygen
author cannam
date Fri, 07 Nov 2008 15:28:33 +0000
parents
children 4454843ff384
rev   line source
cannam@233 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
cannam@233 2
cannam@233 3 /*
cannam@233 4 Vamp
cannam@233 5
cannam@233 6 An API for audio analysis and feature extraction plugins.
cannam@233 7
cannam@233 8 Centre for Digital Music, Queen Mary, University of London.
cannam@233 9 Copyright 2006-2007 Chris Cannam and QMUL.
cannam@233 10
cannam@233 11 Permission is hereby granted, free of charge, to any person
cannam@233 12 obtaining a copy of this software and associated documentation
cannam@233 13 files (the "Software"), to deal in the Software without
cannam@233 14 restriction, including without limitation the rights to use, copy,
cannam@233 15 modify, merge, publish, distribute, sublicense, and/or sell copies
cannam@233 16 of the Software, and to permit persons to whom the Software is
cannam@233 17 furnished to do so, subject to the following conditions:
cannam@233 18
cannam@233 19 The above copyright notice and this permission notice shall be
cannam@233 20 included in all copies or substantial portions of the Software.
cannam@233 21
cannam@233 22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
cannam@233 23 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
cannam@233 24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
cannam@233 25 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
cannam@233 26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
cannam@233 27 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
cannam@233 28 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
cannam@233 29
cannam@233 30 Except as contained in this notice, the names of the Centre for
cannam@233 31 Digital Music; Queen Mary, University of London; and Chris Cannam
cannam@233 32 shall not be used in advertising or otherwise to promote the sale,
cannam@233 33 use or other dealings in this Software without prior written
cannam@233 34 authorization.
cannam@233 35 */
cannam@233 36
cannam@233 37 #include <vamp-hostsdk/PluginWrapper.h>
cannam@233 38
cannam@233 39 namespace Vamp {
cannam@233 40
cannam@233 41 namespace HostExt {
cannam@233 42
cannam@233 43 class PluginRateExtractor : public Plugin
cannam@233 44 {
cannam@233 45 public:
cannam@233 46 PluginRateExtractor() : Plugin(0) { }
cannam@233 47 float getRate() const { return m_inputSampleRate; }
cannam@233 48 };
cannam@233 49
cannam@233 50 PluginWrapper::PluginWrapper(Plugin *plugin) :
cannam@233 51 Plugin(((PluginRateExtractor *)plugin)->getRate()),
cannam@233 52 m_plugin(plugin)
cannam@233 53 {
cannam@233 54 }
cannam@233 55
cannam@233 56 PluginWrapper::~PluginWrapper()
cannam@233 57 {
cannam@233 58 delete m_plugin;
cannam@233 59 }
cannam@233 60
cannam@233 61 bool
cannam@233 62 PluginWrapper::initialise(size_t channels, size_t stepSize, size_t blockSize)
cannam@233 63 {
cannam@233 64 return m_plugin->initialise(channels, stepSize, blockSize);
cannam@233 65 }
cannam@233 66
cannam@233 67 void
cannam@233 68 PluginWrapper::reset()
cannam@233 69 {
cannam@233 70 m_plugin->reset();
cannam@233 71 }
cannam@233 72
cannam@233 73 Plugin::InputDomain
cannam@233 74 PluginWrapper::getInputDomain() const
cannam@233 75 {
cannam@233 76 return m_plugin->getInputDomain();
cannam@233 77 }
cannam@233 78
cannam@233 79 unsigned int
cannam@233 80 PluginWrapper::getVampApiVersion() const
cannam@233 81 {
cannam@233 82 return m_plugin->getVampApiVersion();
cannam@233 83 }
cannam@233 84
cannam@233 85 std::string
cannam@233 86 PluginWrapper::getIdentifier() const
cannam@233 87 {
cannam@233 88 return m_plugin->getIdentifier();
cannam@233 89 }
cannam@233 90
cannam@233 91 std::string
cannam@233 92 PluginWrapper::getName() const
cannam@233 93 {
cannam@233 94 return m_plugin->getName();
cannam@233 95 }
cannam@233 96
cannam@233 97 std::string
cannam@233 98 PluginWrapper::getDescription() const
cannam@233 99 {
cannam@233 100 return m_plugin->getDescription();
cannam@233 101 }
cannam@233 102
cannam@233 103 std::string
cannam@233 104 PluginWrapper::getMaker() const
cannam@233 105 {
cannam@233 106 return m_plugin->getMaker();
cannam@233 107 }
cannam@233 108
cannam@233 109 int
cannam@233 110 PluginWrapper::getPluginVersion() const
cannam@233 111 {
cannam@233 112 return m_plugin->getPluginVersion();
cannam@233 113 }
cannam@233 114
cannam@233 115 std::string
cannam@233 116 PluginWrapper::getCopyright() const
cannam@233 117 {
cannam@233 118 return m_plugin->getCopyright();
cannam@233 119 }
cannam@233 120
cannam@233 121 PluginBase::ParameterList
cannam@233 122 PluginWrapper::getParameterDescriptors() const
cannam@233 123 {
cannam@233 124 return m_plugin->getParameterDescriptors();
cannam@233 125 }
cannam@233 126
cannam@233 127 float
cannam@233 128 PluginWrapper::getParameter(std::string parameter) const
cannam@233 129 {
cannam@233 130 return m_plugin->getParameter(parameter);
cannam@233 131 }
cannam@233 132
cannam@233 133 void
cannam@233 134 PluginWrapper::setParameter(std::string parameter, float value)
cannam@233 135 {
cannam@233 136 m_plugin->setParameter(parameter, value);
cannam@233 137 }
cannam@233 138
cannam@233 139 PluginBase::ProgramList
cannam@233 140 PluginWrapper::getPrograms() const
cannam@233 141 {
cannam@233 142 return m_plugin->getPrograms();
cannam@233 143 }
cannam@233 144
cannam@233 145 std::string
cannam@233 146 PluginWrapper::getCurrentProgram() const
cannam@233 147 {
cannam@233 148 return m_plugin->getCurrentProgram();
cannam@233 149 }
cannam@233 150
cannam@233 151 void
cannam@233 152 PluginWrapper::selectProgram(std::string program)
cannam@233 153 {
cannam@233 154 m_plugin->selectProgram(program);
cannam@233 155 }
cannam@233 156
cannam@233 157 size_t
cannam@233 158 PluginWrapper::getPreferredStepSize() const
cannam@233 159 {
cannam@233 160 return m_plugin->getPreferredStepSize();
cannam@233 161 }
cannam@233 162
cannam@233 163 size_t
cannam@233 164 PluginWrapper::getPreferredBlockSize() const
cannam@233 165 {
cannam@233 166 return m_plugin->getPreferredBlockSize();
cannam@233 167 }
cannam@233 168
cannam@233 169 size_t
cannam@233 170 PluginWrapper::getMinChannelCount() const
cannam@233 171 {
cannam@233 172 return m_plugin->getMinChannelCount();
cannam@233 173 }
cannam@233 174
cannam@233 175 size_t PluginWrapper::getMaxChannelCount() const
cannam@233 176 {
cannam@233 177 return m_plugin->getMaxChannelCount();
cannam@233 178 }
cannam@233 179
cannam@233 180 Plugin::OutputList
cannam@233 181 PluginWrapper::getOutputDescriptors() const
cannam@233 182 {
cannam@233 183 return m_plugin->getOutputDescriptors();
cannam@233 184 }
cannam@233 185
cannam@233 186 Plugin::FeatureSet
cannam@233 187 PluginWrapper::process(const float *const *inputBuffers, RealTime timestamp)
cannam@233 188 {
cannam@233 189 return m_plugin->process(inputBuffers, timestamp);
cannam@233 190 }
cannam@233 191
cannam@233 192 Plugin::FeatureSet
cannam@233 193 PluginWrapper::getRemainingFeatures()
cannam@233 194 {
cannam@233 195 return m_plugin->getRemainingFeatures();
cannam@233 196 }
cannam@233 197
cannam@233 198 }
cannam@233 199
cannam@233 200 }
cannam@233 201