diff options
| author | Tim Redfern <tim@herge.(none)> | 2013-04-10 13:49:24 +0100 |
|---|---|---|
| committer | Tim Redfern <tim@herge.(none)> | 2013-04-10 13:49:24 +0100 |
| commit | 6275e8f15b63f85c2206f0acb64023610c711f24 (patch) | |
| tree | 6074c92614c7d86b4bbfb33ec52737456f34bd1e /rotord/rotor.cpp | |
| parent | 79b312df05887fb6c9dbfa56bb78bbb6f06a1a3d (diff) | |
signal rendering path nearly there
Diffstat (limited to 'rotord/rotor.cpp')
| -rw-r--r-- | rotord/rotor.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/rotord/rotor.cpp b/rotord/rotor.cpp index 2cd894f..af0bd7e 100644 --- a/rotord/rotor.cpp +++ b/rotord/rotor.cpp @@ -567,4 +567,10 @@ int Audio_analysis::process_frame(uint8_t *data,int samples_in_frame) { } void Audio_analysis::cleanup() { analyser.cleanup(); + //print_features(); } +void Audio_analysis::print_features(){ + for (auto i: analyser.features) { + cerr<<i.second<<" "<<i.first<<endl; + } +}
\ No newline at end of file |
