comparison VampTestPlugin.h @ 3:72c80798371e

Some output data
author Chris Cannam
date Mon, 25 Mar 2013 22:07:30 +0000
parents 21d94fc628c8
children d83566810b96
comparison
equal deleted inserted replaced
2:3d07cfc3ee70 3:72c80798371e
1 1
2 // This is a skeleton file for use in creating your own plugin
3 // libraries. Replace MyPlugin and myPlugin throughout with the name
4 // of your first plugin class, and fill in the gaps as appropriate.
5
6
7 // Remember to use a different guard symbol in each header!
8 #ifndef _VAMP_TEST_PLUGIN_H_ 2 #ifndef _VAMP_TEST_PLUGIN_H_
9 #define _VAMP_TEST_PLUGIN_H_ 3 #define _VAMP_TEST_PLUGIN_H_
10 4
11 #include <vamp-sdk/Plugin.h> 5 #include <vamp-sdk/Plugin.h>
12 6
49 Vamp::RealTime timestamp); 43 Vamp::RealTime timestamp);
50 44
51 FeatureSet getRemainingFeatures(); 45 FeatureSet getRemainingFeatures();
52 46
53 protected: 47 protected:
54 // plugin-specific data and methods go here 48 int m_n;
49 std::vector<Vamp::RealTime> m_instants;
50 int m_stepSize;
51 int m_blockSize;
52 Vamp::RealTime m_lastTime;
55 }; 53 };
56 54
57 55
58 56
59 #endif 57 #endif