cue monitoring for MIDI
[ardour.git] / libs / ardour / thread_buffers.cc
index b51576bfc920e1e46a5b908f38b5fe58dd106182..abd8e9d3338627fdb40c8e44f57c4b02839081a2 100644 (file)
@@ -30,10 +30,13 @@ using namespace std;
 ThreadBuffers::ThreadBuffers ()
        : silent_buffers (new BufferSet)
        , scratch_buffers (new BufferSet)
+       , noinplace_buffers (new BufferSet)
        , route_buffers (new BufferSet)
        , mix_buffers (new BufferSet)
        , gain_automation_buffer (0)
+       , trim_automation_buffer (0)
        , send_gain_automation_buffer (0)
+       , scratch_automation_buffer (0)
        , pan_automation_buffer (0)
        , npan_buffers (0)
 {
@@ -70,6 +73,7 @@ ThreadBuffers::ensure_buffers (ChanCount howmany, size_t custom)
                }
 
                scratch_buffers->ensure_buffers (*t, count, size);
+               noinplace_buffers->ensure_buffers (*t, count, size);
                mix_buffers->ensure_buffers (*t, count, size);
                silent_buffers->ensure_buffers (*t, count, size);
                route_buffers->ensure_buffers (*t, count, size);
@@ -79,8 +83,12 @@ ThreadBuffers::ensure_buffers (ChanCount howmany, size_t custom)
 
        delete [] gain_automation_buffer;
        gain_automation_buffer = new gain_t[audio_buffer_size];
+       delete [] trim_automation_buffer;
+       trim_automation_buffer = new gain_t[audio_buffer_size];
        delete [] send_gain_automation_buffer;
        send_gain_automation_buffer = new gain_t[audio_buffer_size];
+       delete [] scratch_automation_buffer;
+       scratch_automation_buffer = new gain_t[audio_buffer_size];
 
        allocate_pan_automation_buffers (audio_buffer_size, howmany.n_audio(), false);
 }