summaryrefslogtreecommitdiff
path: root/rotord
diff options
context:
space:
mode:
Diffstat (limited to 'rotord')
-rw-r--r--rotord/src/nodes_audio_analysis.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/rotord/src/nodes_audio_analysis.h b/rotord/src/nodes_audio_analysis.h
index 8fb843c..de90d13 100644
--- a/rotord/src/nodes_audio_analysis.h
+++ b/rotord/src/nodes_audio_analysis.h
@@ -96,7 +96,7 @@ namespace Rotor {
Act_segmenter* clone(map<string,string> &_settings) { return new Act_segmenter(_settings);};
void cleanup(){
Vamp_node::cleanup();
- //cerr<<"act segmenter custom cleanup"<<endl;
+ //create list of segment durations
vector<float> durations;
for (map<double,vampHost::feature>::iterator f=analyser.features.begin();f!=analyser.features.end();++f){
auto g=f;
@@ -104,8 +104,6 @@ namespace Rotor {
durations.push_back(g->first-f->first);
}
}
-
-
//distribute acts amongst segments;
if (analyser.features.size()==(int)parameters["acts"]->value+1){
for (auto f: analyser.features){