cannam@227: /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ cannam@227: cannam@227: /* cannam@227: Vamp cannam@227: cannam@227: An API for audio analysis and feature extraction plugins. cannam@227: cannam@227: Centre for Digital Music, Queen Mary, University of London. cannam@227: Copyright 2006-2007 Chris Cannam and QMUL. cannam@227: cannam@227: Permission is hereby granted, free of charge, to any person cannam@227: obtaining a copy of this software and associated documentation cannam@227: files (the "Software"), to deal in the Software without cannam@227: restriction, including without limitation the rights to use, copy, cannam@227: modify, merge, publish, distribute, sublicense, and/or sell copies cannam@227: of the Software, and to permit persons to whom the Software is cannam@227: furnished to do so, subject to the following conditions: cannam@227: cannam@227: The above copyright notice and this permission notice shall be cannam@227: included in all copies or substantial portions of the Software. cannam@227: cannam@227: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, cannam@227: EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF cannam@227: MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND cannam@227: NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR cannam@227: ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF cannam@227: CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION cannam@227: WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. cannam@227: cannam@227: Except as contained in this notice, the names of the Centre for cannam@227: Digital Music; Queen Mary, University of London; and Chris Cannam cannam@227: shall not be used in advertising or otherwise to promote the sale, cannam@227: use or other dealings in this Software without prior written cannam@227: authorization. cannam@227: */ cannam@227: cannam@227: #include "PluginWrapper.h" cannam@227: cannam@227: namespace Vamp { cannam@227: cannam@227: namespace HostExt { cannam@227: cannam@227: class PluginRateExtractor : public Plugin cannam@227: { cannam@227: public: cannam@227: PluginRateExtractor() : Plugin(0) { } cannam@227: float getRate() const { return m_inputSampleRate; } cannam@227: }; cannam@227: cannam@227: PluginWrapper::PluginWrapper(Plugin *plugin) : cannam@227: Plugin(((PluginRateExtractor *)plugin)->getRate()), cannam@227: m_plugin(plugin) cannam@227: { cannam@227: } cannam@227: cannam@227: PluginWrapper::~PluginWrapper() cannam@227: { cannam@227: delete m_plugin; cannam@227: } cannam@227: cannam@227: bool cannam@227: PluginWrapper::initialise(size_t channels, size_t stepSize, size_t blockSize) cannam@227: { cannam@227: return m_plugin->initialise(channels, stepSize, blockSize); cannam@227: } cannam@227: cannam@227: void cannam@227: PluginWrapper::reset() cannam@227: { cannam@227: m_plugin->reset(); cannam@227: } cannam@227: cannam@227: Plugin::InputDomain cannam@227: PluginWrapper::getInputDomain() const cannam@227: { cannam@227: return m_plugin->getInputDomain(); cannam@227: } cannam@227: cannam@227: unsigned int cannam@227: PluginWrapper::getVampApiVersion() const cannam@227: { cannam@227: return m_plugin->getVampApiVersion(); cannam@227: } cannam@227: cannam@227: std::string cannam@227: PluginWrapper::getIdentifier() const cannam@227: { cannam@227: return m_plugin->getIdentifier(); cannam@227: } cannam@227: cannam@227: std::string cannam@227: PluginWrapper::getName() const cannam@227: { cannam@227: return m_plugin->getName(); cannam@227: } cannam@227: cannam@227: std::string cannam@227: PluginWrapper::getDescription() const cannam@227: { cannam@227: return m_plugin->getDescription(); cannam@227: } cannam@227: cannam@227: std::string cannam@227: PluginWrapper::getMaker() const cannam@227: { cannam@227: return m_plugin->getMaker(); cannam@227: } cannam@227: cannam@227: int cannam@227: PluginWrapper::getPluginVersion() const cannam@227: { cannam@227: return m_plugin->getPluginVersion(); cannam@227: } cannam@227: cannam@227: std::string cannam@227: PluginWrapper::getCopyright() const cannam@227: { cannam@227: return m_plugin->getCopyright(); cannam@227: } cannam@227: cannam@227: PluginBase::ParameterList cannam@227: PluginWrapper::getParameterDescriptors() const cannam@227: { cannam@227: return m_plugin->getParameterDescriptors(); cannam@227: } cannam@227: cannam@227: float cannam@227: PluginWrapper::getParameter(std::string parameter) const cannam@227: { cannam@227: return m_plugin->getParameter(parameter); cannam@227: } cannam@227: cannam@227: void cannam@227: PluginWrapper::setParameter(std::string parameter, float value) cannam@227: { cannam@227: m_plugin->setParameter(parameter, value); cannam@227: } cannam@227: cannam@227: PluginBase::ProgramList cannam@227: PluginWrapper::getPrograms() const cannam@227: { cannam@227: return m_plugin->getPrograms(); cannam@227: } cannam@227: cannam@227: std::string cannam@227: PluginWrapper::getCurrentProgram() const cannam@227: { cannam@227: return m_plugin->getCurrentProgram(); cannam@227: } cannam@227: cannam@227: void cannam@227: PluginWrapper::selectProgram(std::string program) cannam@227: { cannam@227: m_plugin->selectProgram(program); cannam@227: } cannam@227: cannam@227: size_t cannam@227: PluginWrapper::getPreferredStepSize() const cannam@227: { cannam@227: return m_plugin->getPreferredStepSize(); cannam@227: } cannam@227: cannam@227: size_t cannam@227: PluginWrapper::getPreferredBlockSize() const cannam@227: { cannam@227: return m_plugin->getPreferredBlockSize(); cannam@227: } cannam@227: cannam@227: size_t cannam@227: PluginWrapper::getMinChannelCount() const cannam@227: { cannam@227: return m_plugin->getMinChannelCount(); cannam@227: } cannam@227: cannam@227: size_t PluginWrapper::getMaxChannelCount() const cannam@227: { cannam@227: return m_plugin->getMaxChannelCount(); cannam@227: } cannam@227: cannam@227: Plugin::OutputList cannam@227: PluginWrapper::getOutputDescriptors() const cannam@227: { cannam@227: return m_plugin->getOutputDescriptors(); cannam@227: } cannam@227: cannam@227: Plugin::FeatureSet cannam@227: PluginWrapper::process(const float *const *inputBuffers, RealTime timestamp) cannam@227: { cannam@227: return m_plugin->process(inputBuffers, timestamp); cannam@227: } cannam@227: cannam@227: Plugin::FeatureSet cannam@227: PluginWrapper::getRemainingFeatures() cannam@227: { cannam@227: return m_plugin->getRemainingFeatures(); cannam@227: } cannam@227: cannam@227: } cannam@227: cannam@227: } cannam@227: