Mercurial > hg > vamp-tempogram
comparison plugins.cpp @ 14:c11367df624d
* Renamed NoveltyCurve.* and Spectrogram.* to $(Name)Processor.*
* Aligned novelty curve with audio - when performing FIRFilter::process(params), take inputLength after group delay.
* Removed trail of Spectrogram.
* General tidying!
author | Carl Bussey <c.bussey@se10.qmul.ac.uk> |
---|---|
date | Thu, 14 Aug 2014 10:31:49 +0100 |
parents | 31d2a7e07786 |
children | 4cf2d163127b |
comparison
equal
deleted
inserted
replaced
13:7680cc4c0073 | 14:c11367df624d |
---|---|
5 | 5 |
6 | 6 |
7 #include <vamp/vamp.h> | 7 #include <vamp/vamp.h> |
8 #include <vamp-sdk/PluginAdapter.h> | 8 #include <vamp-sdk/PluginAdapter.h> |
9 | 9 |
10 #include "Tempogram.h" | 10 #include "TempogramPlugin.h" |
11 | 11 |
12 | 12 |
13 // Declare one static adapter here for each plugin class in this library. | 13 // Declare one static adapter here for each plugin class in this library. |
14 | 14 |
15 static Vamp::PluginAdapter<Tempogram> myPluginAdapter; | 15 static Vamp::PluginAdapter<TempogramPlugin> myPluginAdapter; |
16 | 16 |
17 | 17 |
18 // This is the entry-point for the library, and the only function that | 18 // This is the entry-point for the library, and the only function that |
19 // needs to be publicly exported. | 19 // needs to be publicly exported. |
20 | 20 |