Mercurial > hg > vamp-aubio-plugins
view plugins/Onset.cpp @ 0:76761a42d239
* First pass at a simple set of Vamp plugins using the Aubio library.
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Thu, 11 May 2006 14:51:10 +0000 |
parents | |
children | 8230b03a8060 |
line wrap: on
line source
/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ /* Vamp feature extraction plugins using Paul Brossier's Aubio library. Centre for Digital Music, Queen Mary, University of London. This file copyright 2006 Chris Cannam. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. See the file COPYING included with this distribution for more information. */ #include "Onset.h" using std::string; using std::vector; using std::cerr; using std::endl; Onset::Onset(float inputSampleRate) : Plugin(inputSampleRate), m_ibuf(0), m_fftgrain(0), m_onset(0), m_pv(0), m_peakpick(0), m_onsetdet(0), m_onsettype(aubio_onset_mkl), m_threshold(0.3), m_silence(-90) { } Onset::~Onset() { if (m_onsetdet) aubio_onsetdetection_free(m_onsetdet); if (m_ibuf) del_fvec(m_ibuf); if (m_onset) del_fvec(m_onset); if (m_fftgrain) del_cvec(m_fftgrain); if (m_pv) del_aubio_pvoc(m_pv); if (m_peakpick) del_aubio_peakpicker(m_peakpick); } string Onset::getName() const { return "aubioonset"; } string Onset::getDescription() const { return "Aubio Onset Detector"; } string Onset::getMaker() const { return "Paul Brossier (plugin by Chris Cannam)"; } int Onset::getPluginVersion() const { return 1; } string Onset::getCopyright() const { return "GPL"; } bool Onset::initialise(size_t channels, size_t stepSize, size_t blockSize) { m_channelCount = channels; m_stepSize = stepSize; m_blockSize = blockSize; size_t processingBlockSize; if (m_onsettype == aubio_onset_energy || m_onsettype == aubio_onset_hfc) { processingBlockSize = stepSize * 2; } else { processingBlockSize = stepSize * 4; } m_ibuf = new_fvec(stepSize, channels); m_onset = new_fvec(1, channels); m_fftgrain = new_cvec(processingBlockSize, channels); m_pv = new_aubio_pvoc(processingBlockSize, stepSize, channels); m_peakpick = new_aubio_peakpicker(m_threshold); m_onsetdet = new_aubio_onsetdetection(m_onsettype, processingBlockSize, channels); return true; } void Onset::reset() { } size_t Onset::getPreferredStepSize() const { if (m_onsettype == aubio_onset_energy || m_onsettype == aubio_onset_hfc) { return 512; } else { return 128; } } size_t Onset::getPreferredBlockSize() const { return getPreferredStepSize(); } Onset::ParameterList Onset::getParameterDescriptors() const { ParameterList list; ParameterDescriptor desc; desc.name = "onsettype"; desc.description = "Onset Detection Function Type"; desc.minValue = 0; desc.maxValue = 6; desc.defaultValue = (int)aubio_onset_mkl; desc.isQuantized = true; desc.quantizeStep = 1; desc.valueNames.push_back("Energy Based"); desc.valueNames.push_back("Spectral Difference"); desc.valueNames.push_back("High-Frequency Content"); desc.valueNames.push_back("Complex Domain"); desc.valueNames.push_back("Phase Deviation"); desc.valueNames.push_back("Kullback-Liebler"); desc.valueNames.push_back("Modified Kullback-Liebler"); list.push_back(desc); desc = ParameterDescriptor(); desc.name = "peakpickthreshold"; desc.description = "Peak Picker Threshold"; desc.minValue = 0; desc.maxValue = 1; desc.defaultValue = 0.3; desc.isQuantized = false; list.push_back(desc); desc = ParameterDescriptor(); desc.name = "silencethreshold"; desc.description = "Silence Threshold"; desc.minValue = -120; desc.maxValue = 0; desc.defaultValue = -90; desc.unit = "dB"; desc.isQuantized = false; list.push_back(desc); return list; } float Onset::getParameter(std::string param) const { if (param == "onsettype") { return m_onsettype; } else if (param == "peakpickthreshold") { return m_threshold; } else if (param == "silencethreshold") { return m_silence; } else { return 0.0; } } void Onset::setParameter(std::string param, float value) { if (param == "onsettype") { switch (lrintf(value)) { case 0: m_onsettype = aubio_onset_energy; break; case 1: m_onsettype = aubio_onset_specdiff; break; case 2: m_onsettype = aubio_onset_hfc; break; case 3: m_onsettype = aubio_onset_complex; break; case 4: m_onsettype = aubio_onset_phase; break; case 5: m_onsettype = aubio_onset_kl; break; case 6: m_onsettype = aubio_onset_mkl; break; } } else if (param == "peakpickthreshold") { m_threshold = value; } else if (param == "silencethreshold") { m_silence = value; } } Onset::OutputList Onset::getOutputDescriptors() const { OutputList list; OutputDescriptor d; d.name = "onsets"; d.unit = ""; d.description = "Onsets"; d.hasFixedBinCount = true; d.binCount = 0; d.sampleType = OutputDescriptor::OneSamplePerStep; list.push_back(d); return list; } Onset::FeatureSet Onset::process(float **inputBuffers, Vamp::RealTime /* timestamp */) { for (size_t i = 0; i < m_stepSize; ++i) { for (size_t j = 0; j < m_channelCount; ++j) { fvec_write_sample(m_ibuf, inputBuffers[j][i], j, i); } } aubio_pvoc_do(m_pv, m_ibuf, m_fftgrain); aubio_onsetdetection(m_onsetdet, m_fftgrain, m_onset); bool isonset = aubio_peakpick_pimrt(m_onset, m_peakpick); if (isonset) { if (aubio_silence_detection(m_ibuf, m_silence)) { isonset = false; } } FeatureSet returnFeatures; if (isonset) { returnFeatures[0].push_back(Feature()); } return returnFeatures; } Onset::FeatureSet Onset::getRemainingFeatures() { return FeatureSet(); }