annotate vamp-sdk/hostext/PluginChannelAdapter.h @ 63:c747d9b97af3 host-factory-stuff

* documentation
author cannam
date Fri, 01 Jun 2007 15:04:19 +0000
parents fe5486ee1c70
children
rev   line source
cannam@59 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
cannam@59 2
cannam@59 3 /*
cannam@59 4 Vamp
cannam@59 5
cannam@59 6 An API for audio analysis and feature extraction plugins.
cannam@59 7
cannam@59 8 Centre for Digital Music, Queen Mary, University of London.
cannam@59 9 Copyright 2006 Chris Cannam.
cannam@59 10
cannam@59 11 Permission is hereby granted, free of charge, to any person
cannam@59 12 obtaining a copy of this software and associated documentation
cannam@59 13 files (the "Software"), to deal in the Software without
cannam@59 14 restriction, including without limitation the rights to use, copy,
cannam@59 15 modify, merge, publish, distribute, sublicense, and/or sell copies
cannam@59 16 of the Software, and to permit persons to whom the Software is
cannam@59 17 furnished to do so, subject to the following conditions:
cannam@59 18
cannam@59 19 The above copyright notice and this permission notice shall be
cannam@59 20 included in all copies or substantial portions of the Software.
cannam@59 21
cannam@59 22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
cannam@59 23 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
cannam@59 24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
cannam@59 25 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
cannam@59 26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
cannam@59 27 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
cannam@59 28 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
cannam@59 29
cannam@59 30 Except as contained in this notice, the names of the Centre for
cannam@59 31 Digital Music; Queen Mary, University of London; and Chris Cannam
cannam@59 32 shall not be used in advertising or otherwise to promote the sale,
cannam@59 33 use or other dealings in this Software without prior written
cannam@59 34 authorization.
cannam@59 35 */
cannam@59 36
cannam@59 37 #ifndef _VAMP_PLUGIN_CHANNEL_ADAPTER_H_
cannam@59 38 #define _VAMP_PLUGIN_CHANNEL_ADAPTER_H_
cannam@59 39
cannam@59 40 #include "PluginWrapper.h"
cannam@59 41
cannam@59 42 namespace Vamp {
cannam@59 43
cannam@59 44 namespace HostExt {
cannam@59 45
cannam@59 46 /**
cannam@63 47 * PluginChannelAdapter is a Vamp plugin adapter that implements a
cannam@63 48 * policy for management of plugins that expect a different number of
cannam@63 49 * input channels from the number actually available in the source
cannam@63 50 * audio data.
cannam@59 51 *
cannam@59 52 * A host using PluginChannelAdapter may ignore the getMinChannelCount
cannam@59 53 * and getMaxChannelCount reported by the plugin, and still expect the
cannam@59 54 * plugin to run.
cannam@59 55 *
cannam@59 56 * PluginChannelAdapter implements the following policy:
cannam@59 57 *
cannam@59 58 * -- If the plugin supports the provided number of channels directly,
cannam@59 59 * PluginChannelAdapter will just run the plugin as normal.
cannam@59 60 *
cannam@59 61 * -- If the plugin only supports exactly one channel but more than
cannam@59 62 * one channel is provided, PluginChannelAdapter will use the mean of
cannam@59 63 * the channels. This ensures that the resulting values remain within
cannam@59 64 * the same magnitude range as expected for mono data.
cannam@59 65 *
cannam@59 66 * -- If the plugin requires more than one channel but exactly one is
cannam@59 67 * provided, the provided channel will be duplicated across all the
cannam@59 68 * plugin input channels.
cannam@59 69 *
cannam@59 70 * If none of the above apply:
cannam@59 71 *
cannam@59 72 * -- If the plugin requires more channels than are provided, the
cannam@59 73 * minimum acceptable number of channels will be produced by adding
cannam@59 74 * empty (zero valued) channels to those provided.
cannam@59 75 *
cannam@59 76 * -- If the plugin requires fewer channels than are provided, the
cannam@59 77 * maximum acceptable number of channels will be produced by
cannam@59 78 * discarding the excess channels.
cannam@59 79 *
cannam@59 80 * Hosts requiring a different channel policy from the above will need
cannam@59 81 * to implement it themselves, instead of using PluginChannelAdapter.
cannam@62 82 *
cannam@62 83 * Note that PluginChannelAdapter does not override the minimum and
cannam@62 84 * maximum channel counts returned by the wrapped plugin. The host
cannam@62 85 * will need to be aware that it is using a PluginChannelAdapter, and
cannam@62 86 * be prepared to ignore these counts as necessary. (This contrasts
cannam@62 87 * with the approach used in PluginInputDomainAdapter, which aims to
cannam@62 88 * make the host completely unaware of which underlying input domain
cannam@62 89 * is in fact in use.)
cannam@62 90 *
cannam@63 91 * (The rationale for this is that a host may wish to use the
cannam@62 92 * PluginChannelAdapter but still discriminate in some way on the
cannam@62 93 * basis of the number of channels actually supported. For example, a
cannam@62 94 * simple stereo audio host may prefer to reject plugins that require
cannam@62 95 * more than two channels on the grounds that doesn't actually
cannam@62 96 * understand what they are for, rather than allow the channel adapter
cannam@63 97 * to make a potentially meaningless channel conversion for them.)
cannam@63 98 *
cannam@63 99 * In every respect other than its management of channels, the
cannam@63 100 * PluginChannelAdapter behaves identically to the plugin that it
cannam@63 101 * wraps. The wrapped plugin will be deleted when the wrapper is
cannam@63 102 * deleted.
cannam@59 103 */
cannam@59 104
cannam@59 105 class PluginChannelAdapter : public PluginWrapper
cannam@59 106 {
cannam@59 107 public:
cannam@59 108 PluginChannelAdapter(Plugin *plugin); // I take ownership of plugin
cannam@59 109 virtual ~PluginChannelAdapter();
cannam@59 110
cannam@59 111 bool initialise(size_t channels, size_t stepSize, size_t blockSize);
cannam@59 112
cannam@59 113 FeatureSet process(const float *const *inputBuffers, RealTime timestamp);
cannam@59 114
cannam@59 115 protected:
cannam@59 116 size_t m_blockSize;
cannam@59 117 size_t m_inputChannels;
cannam@59 118 size_t m_pluginChannels;
cannam@59 119 float **m_buffer;
cannam@59 120 const float **m_forwardPtrs;
cannam@59 121 };
cannam@59 122
cannam@59 123 }
cannam@59 124
cannam@59 125 }
cannam@59 126
cannam@59 127 #endif