Continuing to update for aubio-git (0.4.0?) api
[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
26 static Vamp::PluginAdapter<Onset> onsetAdapter;
27 static Vamp::PluginAdapter<Pitch> pitchAdapter;
28 static Vamp::PluginAdapter<Notes> notesAdapter;
29 static Vamp::PluginAdapter<Tempo> tempoAdapter;
30 static Vamp::PluginAdapter<Silence> silenceAdapter;
31
32 const VampPluginDescriptor *vampGetPluginDescriptor(unsigned int vampApiVersion,
33                                                     unsigned int index)
34 {
35     if (vampApiVersion < 2) return 0;
36
37     switch (index) {
38     case  0: return onsetAdapter.getDescriptor();
39     case  1: return pitchAdapter.getDescriptor();
40     case  2: return notesAdapter.getDescriptor();
41     case  3: return tempoAdapter.getDescriptor();
42     case  4: return silenceAdapter.getDescriptor();
43     default: return 0;
44     }
45 }
46