...
[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
25 static Vamp::PluginAdapter<Onset> onsetAdapter;
26 static Vamp::PluginAdapter<Pitch> pitchAdapter;
27 static Vamp::PluginAdapter<Notes> notesAdapter;
28 static Vamp::PluginAdapter<Tempo> tempoAdapter;
29
30 const VampPluginDescriptor *vampGetPluginDescriptor(unsigned int index)
31 {
32     switch (index) {
33     case  0: return onsetAdapter.getDescriptor();
34     case  1: return pitchAdapter.getDescriptor();
35     case  2: return notesAdapter.getDescriptor();
36     case  3: return tempoAdapter.getDescriptor();
37     default: return 0;
38     }
39 }
40