Mercurial > hg > vamp-aubio-plugins
comparison libmain.cpp @ 0:76761a42d239
* First pass at a simple set of Vamp plugins using the Aubio library.
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Thu, 11 May 2006 14:51:10 +0000 |
parents | |
children | 4493cb063598 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:76761a42d239 |
---|---|
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 | |
24 static Vamp::PluginAdapter<Onset> onsetAdapter; | |
25 static Vamp::PluginAdapter<Pitch> pitchAdapter; | |
26 static Vamp::PluginAdapter<Notes> notesAdapter; | |
27 | |
28 const VampPluginDescriptor *vampGetPluginDescriptor(unsigned int index) | |
29 { | |
30 switch (index) { | |
31 case 0: return onsetAdapter.getDescriptor(); | |
32 case 1: return pitchAdapter.getDescriptor(); | |
33 case 2: return notesAdapter.getDescriptor(); | |
34 default: return 0; | |
35 } | |
36 } | |
37 |