Mercurial > hg > beatroot-vamp
annotate BeatRootProcessor.cpp @ 2:7d4e6b1ff3d1
Minor further updates
author | Chris Cannam |
---|---|
date | Fri, 17 Jun 2011 18:17:16 +0100 |
parents | |
children | f04f87b5e643 |
rev | line source |
---|---|
Chris@2 | 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ |
Chris@2 | 2 |
Chris@2 | 3 /* |
Chris@2 | 4 Vamp feature extraction plugin for the BeatRoot beat tracker. |
Chris@2 | 5 |
Chris@2 | 6 Centre for Digital Music, Queen Mary, University of London. |
Chris@2 | 7 This file copyright 2011 Simon Dixon, Chris Cannam and QMUL. |
Chris@2 | 8 |
Chris@2 | 9 This program is free software; you can redistribute it and/or |
Chris@2 | 10 modify it under the terms of the GNU General Public License as |
Chris@2 | 11 published by the Free Software Foundation; either version 2 of the |
Chris@2 | 12 License, or (at your option) any later version. See the file |
Chris@2 | 13 COPYING included with this distribution for more information. |
Chris@2 | 14 */ |
Chris@2 | 15 |
Chris@2 | 16 #include "BeatRootProcessor.h" |
Chris@2 | 17 |
Chris@2 | 18 bool |
Chris@2 | 19 BeatRootProcessor::debug = false; |
Chris@2 | 20 |
Chris@2 | 21 bool |
Chris@2 | 22 BeatRootProcessor::silent = true; |
Chris@2 | 23 |
Chris@2 | 24 double |
Chris@2 | 25 BeatRootProcessor::silenceThreshold = 0.0004; |
Chris@2 | 26 |
Chris@2 | 27 double |
Chris@2 | 28 BeatRootProcessor::rangeThreshold = 10; |
Chris@2 | 29 |
Chris@2 | 30 int |
Chris@2 | 31 BeatRootProcessor::normaliseMode = 2; |
Chris@2 | 32 |
Chris@2 | 33 int |
Chris@2 | 34 BeatRootProcessor::energyOversampleFactor = 2; |
Chris@2 | 35 |