annotate src/vamp-plugin-sdk-2.4/examples/ZeroCrossing.cpp @ 83:ae30d91d2ffe

Replace these with versions built using an older toolset (so as to avoid ABI compatibilities when linking on Ubuntu 14.04 for packaging purposes)
author Chris Cannam
date Fri, 07 Feb 2020 11:51:13 +0000
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 2006 Chris Cannam.
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 "ZeroCrossing.h"
Chris@12 38
Chris@12 39 using std::string;
Chris@12 40 using std::vector;
Chris@12 41 using std::cerr;
Chris@12 42 using std::endl;
Chris@12 43
Chris@12 44 #include <cmath>
Chris@12 45
Chris@12 46 ZeroCrossing::ZeroCrossing(float inputSampleRate) :
Chris@12 47 Plugin(inputSampleRate),
Chris@12 48 m_stepSize(0),
Chris@12 49 m_previousSample(0.0f)
Chris@12 50 {
Chris@12 51 }
Chris@12 52
Chris@12 53 ZeroCrossing::~ZeroCrossing()
Chris@12 54 {
Chris@12 55 }
Chris@12 56
Chris@12 57 string
Chris@12 58 ZeroCrossing::getIdentifier() const
Chris@12 59 {
Chris@12 60 return "zerocrossing";
Chris@12 61 }
Chris@12 62
Chris@12 63 string
Chris@12 64 ZeroCrossing::getName() const
Chris@12 65 {
Chris@12 66 return "Zero Crossings";
Chris@12 67 }
Chris@12 68
Chris@12 69 string
Chris@12 70 ZeroCrossing::getDescription() const
Chris@12 71 {
Chris@12 72 return "Detect and count zero crossing points";
Chris@12 73 }
Chris@12 74
Chris@12 75 string
Chris@12 76 ZeroCrossing::getMaker() const
Chris@12 77 {
Chris@12 78 return "Vamp SDK Example Plugins";
Chris@12 79 }
Chris@12 80
Chris@12 81 int
Chris@12 82 ZeroCrossing::getPluginVersion() const
Chris@12 83 {
Chris@12 84 return 2;
Chris@12 85 }
Chris@12 86
Chris@12 87 string
Chris@12 88 ZeroCrossing::getCopyright() const
Chris@12 89 {
Chris@12 90 return "Freely redistributable (BSD license)";
Chris@12 91 }
Chris@12 92
Chris@12 93 bool
Chris@12 94 ZeroCrossing::initialise(size_t channels, size_t stepSize, size_t blockSize)
Chris@12 95 {
Chris@12 96 if (channels < getMinChannelCount() ||
Chris@12 97 channels > getMaxChannelCount()) return false;
Chris@12 98
Chris@12 99 m_stepSize = std::min(stepSize, blockSize);
Chris@12 100
Chris@12 101 return true;
Chris@12 102 }
Chris@12 103
Chris@12 104 void
Chris@12 105 ZeroCrossing::reset()
Chris@12 106 {
Chris@12 107 m_previousSample = 0.0f;
Chris@12 108 }
Chris@12 109
Chris@12 110 ZeroCrossing::OutputList
Chris@12 111 ZeroCrossing::getOutputDescriptors() const
Chris@12 112 {
Chris@12 113 OutputList list;
Chris@12 114
Chris@12 115 OutputDescriptor zc;
Chris@12 116 zc.identifier = "counts";
Chris@12 117 zc.name = "Zero Crossing Counts";
Chris@12 118 zc.description = "The number of zero crossing points per processing block";
Chris@12 119 zc.unit = "crossings";
Chris@12 120 zc.hasFixedBinCount = true;
Chris@12 121 zc.binCount = 1;
Chris@12 122 zc.hasKnownExtents = false;
Chris@12 123 zc.isQuantized = true;
Chris@12 124 zc.quantizeStep = 1.0;
Chris@12 125 zc.sampleType = OutputDescriptor::OneSamplePerStep;
Chris@12 126 list.push_back(zc);
Chris@12 127
Chris@12 128 zc.identifier = "zerocrossings";
Chris@12 129 zc.name = "Zero Crossings";
Chris@12 130 zc.description = "The locations of zero crossing points";
Chris@12 131 zc.unit = "";
Chris@12 132 zc.hasFixedBinCount = true;
Chris@12 133 zc.binCount = 0;
Chris@12 134 zc.sampleType = OutputDescriptor::VariableSampleRate;
Chris@12 135 zc.sampleRate = m_inputSampleRate;
Chris@12 136 list.push_back(zc);
Chris@12 137
Chris@12 138 return list;
Chris@12 139 }
Chris@12 140
Chris@12 141 ZeroCrossing::FeatureSet
Chris@12 142 ZeroCrossing::process(const float *const *inputBuffers,
Chris@12 143 Vamp::RealTime timestamp)
Chris@12 144 {
Chris@12 145 if (m_stepSize == 0) {
Chris@12 146 cerr << "ERROR: ZeroCrossing::process: "
Chris@12 147 << "ZeroCrossing has not been initialised"
Chris@12 148 << endl;
Chris@12 149 return FeatureSet();
Chris@12 150 }
Chris@12 151
Chris@12 152 float prev = m_previousSample;
Chris@12 153 size_t count = 0;
Chris@12 154
Chris@12 155 FeatureSet returnFeatures;
Chris@12 156
Chris@12 157 for (size_t i = 0; i < m_stepSize; ++i) {
Chris@12 158
Chris@12 159 float sample = inputBuffers[0][i];
Chris@12 160 bool crossing = false;
Chris@12 161
Chris@12 162 if (sample <= 0.0) {
Chris@12 163 if (prev > 0.0) crossing = true;
Chris@12 164 } else if (sample > 0.0) {
Chris@12 165 if (prev <= 0.0) crossing = true;
Chris@12 166 }
Chris@12 167
Chris@12 168 if (crossing) {
Chris@12 169 ++count;
Chris@12 170 Feature feature;
Chris@12 171 feature.hasTimestamp = true;
Chris@12 172 feature.timestamp = timestamp +
Chris@12 173 Vamp::RealTime::frame2RealTime(i, (size_t)m_inputSampleRate);
Chris@12 174 returnFeatures[1].push_back(feature);
Chris@12 175 }
Chris@12 176
Chris@12 177 prev = sample;
Chris@12 178 }
Chris@12 179
Chris@12 180 m_previousSample = prev;
Chris@12 181
Chris@12 182 Feature feature;
Chris@12 183 feature.hasTimestamp = false;
Chris@12 184 feature.values.push_back(float(count));
Chris@12 185
Chris@12 186 returnFeatures[0].push_back(feature);
Chris@12 187 return returnFeatures;
Chris@12 188 }
Chris@12 189
Chris@12 190 ZeroCrossing::FeatureSet
Chris@12 191 ZeroCrossing::getRemainingFeatures()
Chris@12 192 {
Chris@12 193 return FeatureSet();
Chris@12 194 }
Chris@12 195