summaryrefslogtreecommitdiff
path: root/rotord/vampHost.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'rotord/vampHost.cpp')
-rw-r--r--rotord/vampHost.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/rotord/vampHost.cpp b/rotord/vampHost.cpp
index e28419c..2521f46 100644
--- a/rotord/vampHost.cpp
+++ b/rotord/vampHost.cpp
@@ -643,7 +643,6 @@ bool vampHost::Analyser::init(const string &soname,const string &id,const int &_
currentStep = 0;
finalStepsRemaining = max(1, (blockSize / stepSize) - 1); // at end of file, this many part-silent frames needed after we hit EOF
- filebuf = new float[blockSize * channels];
plugbuf = new float*[channels];
for (int c = 0; c < channels; ++c) plugbuf[c] = new float[blockSize + 2];
@@ -742,7 +741,6 @@ void vampHost::Analyser::process_frame(uint8_t *data,int samples_in_frame){
}
}
void vampHost::Analyser::cleanup(){
- delete[] filebuf;
for (int c = 0; c < channels; ++c) {
delete[] plugbuf[c];
}