diff options
author | John Glover <j@johnglover.net> | 2013-01-25 12:32:58 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2013-01-25 12:32:58 +0100 |
commit | 42381e2a704850cca13c74110813fa865727cef8 (patch) | |
tree | 0a4982bcc8737d826c8c3b19b91a11945d2ad60d /src | |
parent | 9a01ba209d70f7a1dd7e5fb5534f8a4e39e792c5 (diff) | |
download | simpl-42381e2a704850cca13c74110813fa865727cef8.tar.gz simpl-42381e2a704850cca13c74110813fa865727cef8.tar.bz2 simpl-42381e2a704850cca13c74110813fa865727cef8.zip |
[sms] Fix bug in SMSPeakDetection.find_peaks.
Memory for frame audio arrays should be managed
by the Frame object.
Diffstat (limited to 'src')
-rw-r--r-- | src/simpl/peak_detection.cpp | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/src/simpl/peak_detection.cpp b/src/simpl/peak_detection.cpp index 41d395d..ba73fd8 100644 --- a/src/simpl/peak_detection.cpp +++ b/src/simpl/peak_detection.cpp @@ -329,24 +329,27 @@ Peaks SMSPeakDetection::find_peaks_in_frame(Frame* frame) { // peaks returned for each frame. Frames SMSPeakDetection::find_peaks(int audio_size, sample* audio) { clear(); + unsigned int pos = 0; + bool alloc_memory_in_frame = true; _analysis_params.iSizeSound = audio_size; - unsigned int pos = 0; 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); - f->audio(&audio[pos]); + Frame* f = new Frame(_frame_size, alloc_memory_in_frame); f->max_peaks(_max_peaks); - // find peaks - find_peaks_in_frame(f); + if((int)pos <= (audio_size - _frame_size)) { + f->audio(&(audio[pos]), _frame_size); + } + else { + f->audio(&(audio[pos]), audio_size - pos); + } + find_peaks_in_frame(f); _frames.push_back(f); if(!_static_frame_size) { |