(Start to) remove the channel counts from everywhere: they should always be 1 anyway...
[vamp-aubio-plugins.git] / plugins / Types.cpp
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*-  vi:set ts=8 sts=4 sw=4: */
2
3 /*
4     Vamp feature extraction plugins using Paul Brossier's Aubio library.
5
6     Centre for Digital Music, Queen Mary, University of London.
7     This file copyright 2012 Queen Mary, University of London.
8     
9     This program is free software; you can redistribute it and/or
10     modify it under the terms of the GNU General Public License as
11     published by the Free Software Foundation; either version 2 of the
12     License, or (at your option) any later version.  See the file
13     COPYING included with this distribution for more information.
14
15 */
16
17 #include "Types.h"
18
19 const char *getAubioNameForOnsetType(OnsetType t)
20 {
21     switch (t) {
22     case OnsetEnergy: return "energy";
23     case OnsetSpecDiff: return "specdiff";
24     case OnsetHFC: return "hfc";
25     case OnsetComplex: return "complex";
26     case OnsetPhase: return "phase";
27     case OnsetMKL: return "mkl";
28     case OnsetKL: return "kl";
29     case OnsetSpecFlux: return "specflux";
30     }
31 }
32
33 const char *getAubioNameForPitchType(PitchType t)
34 {
35     switch (t) {
36     case PitchMComb: return "mcomb";
37     case PitchYinFFT: return "yinfft";
38     case PitchYin: return "yin";
39     case PitchSchmitt: return "schmitt";
40     case PitchFComb: return "fcomb";
41     }
42 }
43