Mercurial > hg > tuning-difference
diff TuningDifference.h @ 1:141bda033074
First hack at it
author | Chris Cannam |
---|---|
date | Fri, 23 Jan 2015 18:17:09 +0000 |
parents | 8a8d8c1f3968 |
children |
line wrap: on
line diff
--- a/TuningDifference.h Fri Jan 23 17:41:22 2015 +0000 +++ b/TuningDifference.h Fri Jan 23 18:17:09 2015 +0000 @@ -4,7 +4,7 @@ #include <vamp-sdk/Plugin.h> using std::string; - +using std::vector; class TuningDifference : public Vamp::Plugin { @@ -44,7 +44,9 @@ FeatureSet getRemainingFeatures(); protected: - // plugin-specific data and methods go here + int m_blockSize; + vector<double> m_sum[2]; + int m_frameCount; };