Mercurial > hg > vamp-plugin-sdk
comparison examples/FixedTempoEstimator.cpp @ 213:87b131a54b0a
* Update Makefile.osx
author | cannam |
---|---|
date | Wed, 22 Oct 2008 08:49:17 +0000 |
parents | 0f6616ef0e18 |
children | a5a54b60e82e |
comparison
equal
deleted
inserted
replaced
212:d643927816aa | 213:87b131a54b0a |
---|---|
591 | 591 |
592 feature.values.clear(); | 592 feature.values.clear(); |
593 feature.label = ""; | 593 feature.label = ""; |
594 | 594 |
595 while (feature.values.size() < 8) { | 595 while (feature.values.size() < 8) { |
596 // cerr << "adding tempo value from lag " << ci->second << endl; | |
596 if (m_t[ci->second] > 0) { | 597 if (m_t[ci->second] > 0) { |
597 feature.values.push_back(m_t[ci->second]); | 598 feature.values.push_back(m_t[ci->second]); |
598 } else { | 599 } else { |
599 feature.values.push_back(lag2tempo(ci->second)); | 600 feature.values.push_back(lag2tempo(ci->second)); |
600 } | 601 } |