491a95cae35ea611e5646f29a80f12e4d5c616b2
[vamp-aubio-plugins.git] / libmain.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 2006 Chris Cannam.
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 <vamp/vamp.h>
18 #include <vamp-sdk/PluginAdapter.h>
19
20 #include "plugins/Onset.h"
21 #include "plugins/Pitch.h"
22 #include "plugins/Notes.h"
23 #include "plugins/Tempo.h"
24 #include "plugins/Silence.h"
25 #include "plugins/Mfcc.h"
26 #include "plugins/MelEnergy.h"
27
28 static Vamp::PluginAdapter<Onset> onsetAdapter;
29 static Vamp::PluginAdapter<Pitch> pitchAdapter;
30 static Vamp::PluginAdapter<Notes> notesAdapter;
31 static Vamp::PluginAdapter<Tempo> tempoAdapter;
32 static Vamp::PluginAdapter<Silence> silenceAdapter;
33 static Vamp::PluginAdapter<Mfcc> mfccAdapter;
34 static Vamp::PluginAdapter<MelEnergy> melenergyAdapter;
35
36 const VampPluginDescriptor *vampGetPluginDescriptor(unsigned int vampApiVersion,
37                                                     unsigned int index)
38 {
39     if (vampApiVersion < 2) return 0;
40
41     switch (index) {
42     case  0: return onsetAdapter.getDescriptor();
43     case  1: return pitchAdapter.getDescriptor();
44     case  2: return notesAdapter.getDescriptor();
45     case  3: return tempoAdapter.getDescriptor();
46     case  4: return silenceAdapter.getDescriptor();
47     case  5: return mfccAdapter.getDescriptor();
48     case  6: return melenergyAdapter.getDescriptor();
49     default: return 0;
50     }
51 }
52