Mercurial > hg > qm-vamp-plugins
changeset 234:4a1abf1f2ac4
Fixes for qm-dsp codestyle-and-tidy branch
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Mon, 03 Jun 2019 08:23:00 +0100 |
parents | c9c562f37dd7 |
children | 734751bc3e07 |
files | plugins/ChromagramPlugin.h plugins/TonalChangeDetect.cpp repoint-project.json |
diffstat | 3 files changed, 6 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/ChromagramPlugin.h Thu May 30 16:22:09 2019 +0100 +++ b/plugins/ChromagramPlugin.h Mon Jun 03 08:23:00 2019 +0100 @@ -64,7 +64,7 @@ mutable size_t m_step; mutable size_t m_block; - vector<double> m_binsums; + std::vector<double> m_binsums; size_t m_count; };
--- a/plugins/TonalChangeDetect.cpp Thu May 30 16:22:09 2019 +0100 +++ b/plugins/TonalChangeDetect.cpp Mon Jun 03 08:23:00 2019 +0100 @@ -18,6 +18,9 @@ #include <dsp/chromagram/Chromagram.h> #include <dsp/tonal/ChangeDetectionFunction.h> +using std::cerr; +using std::endl; + TonalChangeDetect::TonalChangeDetect(float fInputSampleRate) : Vamp::Plugin(fInputSampleRate), m_chromagram(0),