diff options
author | John Glover <j@johnglover.net> | 2013-01-24 16:18:13 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2013-01-24 16:18:13 +0100 |
commit | c010347e4f84647ad33dde4df7be09ec74239a58 (patch) | |
tree | 6eef07e02b4820b6e91aaf6f256c342c0ff9f6c0 /src | |
parent | 0fbfa61da91408154b49d38834f8e5e51d7da54f (diff) | |
download | simpl-c010347e4f84647ad33dde4df7be09ec74239a58.tar.gz simpl-c010347e4f84647ad33dde4df7be09ec74239a58.tar.bz2 simpl-c010347e4f84647ad33dde4df7be09ec74239a58.zip |
[tests] Fix bug in peak detection tests.
Diffstat (limited to 'src')
-rw-r--r-- | src/simpl/peak_detection.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/simpl/peak_detection.cpp b/src/simpl/peak_detection.cpp index b0d4829..41d395d 100644 --- a/src/simpl/peak_detection.cpp +++ b/src/simpl/peak_detection.cpp @@ -135,15 +135,15 @@ Peaks PeakDetection::find_peaks_in_frame(Frame* frame) { Frames PeakDetection::find_peaks(int audio_size, sample* audio) { clear(); unsigned int pos = 0; + bool alloc_memory_in_frame = true; while(pos <= audio_size - _hop_size) { - // get the next frame size if(!_static_frame_size) { _frame_size = next_frame_size(); } - // get the next frame - Frame* f = new Frame(_frame_size, true); + Frame* f = new Frame(_frame_size, alloc_memory_in_frame); + f->max_peaks(_max_peaks); if((int)pos <= (audio_size - _frame_size)) { f->audio(&(audio[pos]), _frame_size); @@ -152,11 +152,7 @@ Frames PeakDetection::find_peaks(int audio_size, sample* audio) { f->audio(&(audio[pos]), audio_size - pos); } - f->max_peaks(_max_peaks); - - // find peaks find_peaks_in_frame(f); - _frames.push_back(f); pos += _hop_size; } |