summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/simpl/base.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/simpl/base.cpp b/src/simpl/base.cpp
index 8086143..1751dd5 100644
--- a/src/simpl/base.cpp
+++ b/src/simpl/base.cpp
@@ -142,6 +142,13 @@ void Frame::destroy_arrays() {
void Frame::clear() {
clear_peaks();
clear_partials();
+
+ 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);
+ }
}
void Frame::clear_peaks() {