diff options
author | John Glover <j@johnglover.net> | 2012-09-11 16:01:13 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2012-09-11 16:01:13 +0200 |
commit | 75bf8b0ba1d874b6af1b88ed5fffe27b3b25e70d (patch) | |
tree | 9d3ff028dd7b62b9441855f0b8353305ae7095ba /src | |
parent | a2cc58647900f3888838a9016f5d9d37c8160569 (diff) | |
download | simpl-75bf8b0ba1d874b6af1b88ed5fffe27b3b25e70d.tar.gz simpl-75bf8b0ba1d874b6af1b88ed5fffe27b3b25e70d.tar.bz2 simpl-75bf8b0ba1d874b6af1b88ed5fffe27b3b25e70d.zip |
[base] Add ability to clear all synthesised
sample buffers in a Frame (but not the audio
buffer).
Diffstat (limited to 'src')
-rw-r--r-- | src/simpl/base.cpp | 12 | ||||
-rw-r--r-- | src/simpl/base.h | 1 |
2 files changed, 10 insertions, 3 deletions
diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp index 01e18b2..f418bf5 100644 --- a/src/simpl/base.cpp +++ b/src/simpl/base.cpp @@ -117,10 +117,8 @@ void Frame::clear() { if(_alloc_memory) { memset(_audio, 0.0, sizeof(sample) * _size); - memset(_synth, 0.0, sizeof(sample) * _synth_size); - memset(_residual, 0.0, sizeof(sample) * _size); - memset(_synth_residual, 0.0, sizeof(sample) * _synth_size); } + clear_synth(); } void Frame::clear_peaks() { @@ -133,6 +131,14 @@ void Frame::clear_partials() { _num_partials = 0; } +void Frame::clear_synth() { + if(_alloc_memory) { + memset(_synth, 0.0, sizeof(sample) * _synth_size); + memset(_residual, 0.0, sizeof(sample) * _size); + memset(_synth_residual, 0.0, sizeof(sample) * _synth_size); + } +} + // Frame - peaks // ------------- diff --git a/src/simpl/base.h b/src/simpl/base.h index 9e04ef7..83ab6bd 100644 --- a/src/simpl/base.h +++ b/src/simpl/base.h @@ -93,6 +93,7 @@ class Frame { void clear(); void clear_peaks(); void clear_partials(); + void clear_synth(); // peaks int num_peaks(); |