annotate src/vamp-plugin-sdk-2.4/examples/PowerSpectrum.cpp @ 23:619f715526df sv_v2.1

Update Vamp plugin SDK to 2.5
author Chris Cannam
date Thu, 09 May 2013 10:52:46 +0100
parents b7bda433d832
children
rev   line source
Chris@12 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@12 2
Chris@12 3 /*
Chris@12 4 Vamp
Chris@12 5
Chris@12 6 An API for audio analysis and feature extraction plugins.
Chris@12 7
Chris@12 8 Centre for Digital Music, Queen Mary, University of London.
Chris@12 9 Copyright 2008 QMUL.
Chris@12 10
Chris@12 11 Permission is hereby granted, free of charge, to any person
Chris@12 12 obtaining a copy of this software and associated documentation
Chris@12 13 files (the "Software"), to deal in the Software without
Chris@12 14 restriction, including without limitation the rights to use, copy,
Chris@12 15 modify, merge, publish, distribute, sublicense, and/or sell copies
Chris@12 16 of the Software, and to permit persons to whom the Software is
Chris@12 17 furnished to do so, subject to the following conditions:
Chris@12 18
Chris@12 19 The above copyright notice and this permission notice shall be
Chris@12 20 included in all copies or substantial portions of the Software.
Chris@12 21
Chris@12 22 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
Chris@12 23 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Chris@12 24 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Chris@12 25 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
Chris@12 26 ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
Chris@12 27 CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
Chris@12 28 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Chris@12 29
Chris@12 30 Except as contained in this notice, the names of the Centre for
Chris@12 31 Digital Music; Queen Mary, University of London; and Chris Cannam
Chris@12 32 shall not be used in advertising or otherwise to promote the sale,
Chris@12 33 use or other dealings in this Software without prior written
Chris@12 34 authorization.
Chris@12 35 */
Chris@12 36
Chris@12 37 #include "PowerSpectrum.h"
Chris@12 38
Chris@12 39 using std::string;
Chris@12 40 using std::cerr;
Chris@12 41 using std::endl;
Chris@12 42
Chris@12 43 #include <math.h>
Chris@12 44
Chris@12 45 PowerSpectrum::PowerSpectrum(float inputSampleRate) :
Chris@12 46 Plugin(inputSampleRate),
Chris@12 47 m_blockSize(0)
Chris@12 48 {
Chris@12 49 }
Chris@12 50
Chris@12 51 PowerSpectrum::~PowerSpectrum()
Chris@12 52 {
Chris@12 53 }
Chris@12 54
Chris@12 55 string
Chris@12 56 PowerSpectrum::getIdentifier() const
Chris@12 57 {
Chris@12 58 return "powerspectrum";
Chris@12 59 }
Chris@12 60
Chris@12 61 string
Chris@12 62 PowerSpectrum::getName() const
Chris@12 63 {
Chris@12 64 return "Simple Power Spectrum";
Chris@12 65 }
Chris@12 66
Chris@12 67 string
Chris@12 68 PowerSpectrum::getDescription() const
Chris@12 69 {
Chris@12 70 return "Return the power spectrum of a signal";
Chris@12 71 }
Chris@12 72
Chris@12 73 string
Chris@12 74 PowerSpectrum::getMaker() const
Chris@12 75 {
Chris@12 76 return "Vamp SDK Example Plugins";
Chris@12 77 }
Chris@12 78
Chris@12 79 int
Chris@12 80 PowerSpectrum::getPluginVersion() const
Chris@12 81 {
Chris@12 82 return 1;
Chris@12 83 }
Chris@12 84
Chris@12 85 string
Chris@12 86 PowerSpectrum::getCopyright() const
Chris@12 87 {
Chris@12 88 return "Freely redistributable (BSD license)";
Chris@12 89 }
Chris@12 90
Chris@12 91 bool
Chris@12 92 PowerSpectrum::initialise(size_t channels, size_t stepSize, size_t blockSize)
Chris@12 93 {
Chris@12 94 if (channels < getMinChannelCount() ||
Chris@12 95 channels > getMaxChannelCount()) return false;
Chris@12 96
Chris@12 97 m_blockSize = blockSize;
Chris@12 98
Chris@12 99 return true;
Chris@12 100 }
Chris@12 101
Chris@12 102 void
Chris@12 103 PowerSpectrum::reset()
Chris@12 104 {
Chris@12 105 }
Chris@12 106
Chris@12 107 PowerSpectrum::OutputList
Chris@12 108 PowerSpectrum::getOutputDescriptors() const
Chris@12 109 {
Chris@12 110 OutputList list;
Chris@12 111
Chris@12 112 OutputDescriptor d;
Chris@12 113 d.identifier = "powerspectrum";
Chris@12 114 d.name = "Power Spectrum";
Chris@12 115 d.description = "Power values of the frequency spectrum bins calculated from the input signal";
Chris@12 116 d.unit = "";
Chris@12 117 d.hasFixedBinCount = true;
Chris@12 118 if (m_blockSize == 0) {
Chris@12 119 // Just so as not to return "1". This is the bin count that
Chris@12 120 // would result from a block size of 1024, which is a likely
Chris@12 121 // default -- but the host should always set the block size
Chris@12 122 // before querying the bin count for certain.
Chris@12 123 d.binCount = 513;
Chris@12 124 } else {
Chris@12 125 d.binCount = m_blockSize / 2 + 1;
Chris@12 126 }
Chris@12 127 d.hasKnownExtents = false;
Chris@12 128 d.isQuantized = false;
Chris@12 129 d.sampleType = OutputDescriptor::OneSamplePerStep;
Chris@12 130 list.push_back(d);
Chris@12 131
Chris@12 132 return list;
Chris@12 133 }
Chris@12 134
Chris@12 135 PowerSpectrum::FeatureSet
Chris@12 136 PowerSpectrum::process(const float *const *inputBuffers, Vamp::RealTime timestamp)
Chris@12 137 {
Chris@12 138 FeatureSet fs;
Chris@12 139
Chris@12 140 if (m_blockSize == 0) {
Chris@12 141 cerr << "ERROR: PowerSpectrum::process: Not initialised" << endl;
Chris@12 142 return fs;
Chris@12 143 }
Chris@12 144
Chris@12 145 size_t n = m_blockSize / 2 + 1;
Chris@12 146 const float *fbuf = inputBuffers[0];
Chris@12 147
Chris@12 148 Feature feature;
Chris@12 149 feature.hasTimestamp = false;
Chris@12 150 feature.values.reserve(n); // optional
Chris@12 151
Chris@12 152 for (size_t i = 0; i < n; ++i) {
Chris@12 153
Chris@12 154 double real = fbuf[i * 2];
Chris@12 155 double imag = fbuf[i * 2 + 1];
Chris@12 156
Chris@12 157 feature.values.push_back(real * real + imag * imag);
Chris@12 158 }
Chris@12 159
Chris@12 160 fs[0].push_back(feature);
Chris@12 161
Chris@12 162 return fs;
Chris@12 163 }
Chris@12 164
Chris@12 165 PowerSpectrum::FeatureSet
Chris@12 166 PowerSpectrum::getRemainingFeatures()
Chris@12 167 {
Chris@12 168 return FeatureSet();
Chris@12 169 }
Chris@12 170