annotate src/vamp-plugin-sdk-2.5/examples/PowerSpectrum.cpp @ 169:223a55898ab9 tip default

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