fix crash when copy'ing latent plugins
[ardour.git] / libs / ardour / thread_buffers.cc
1 /*
2     Copyright (C) 2010 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <iostream>
21 #include <algorithm>
22
23 #include "ardour/audioengine.h"
24 #include "ardour/buffer_set.h"
25 #include "ardour/thread_buffers.h"
26
27 using namespace ARDOUR;
28 using namespace std;
29
30 ThreadBuffers::ThreadBuffers ()
31         : silent_buffers (new BufferSet)
32         , scratch_buffers (new BufferSet)
33         , noinplace_buffers (new BufferSet)
34         , route_buffers (new BufferSet)
35         , mix_buffers (new BufferSet)
36         , gain_automation_buffer (0)
37         , trim_automation_buffer (0)
38         , send_gain_automation_buffer (0)
39         , pan_automation_buffer (0)
40         , npan_buffers (0)
41 {
42 }
43
44 void
45 ThreadBuffers::ensure_buffers (ChanCount howmany, size_t custom)
46 {
47         // std::cerr << "ThreadBuffers " << this << " resize buffers with count = " << howmany << std::endl;
48
49         /* this is all protected by the process lock in the Session
50          */
51
52         /* we always need at least 1 midi buffer */
53         if (howmany.n_midi() < 1) {
54                 howmany.set_midi(1);
55         }
56
57         if (howmany.n_audio() == 0 && howmany.n_midi() == 1) {
58                 return;
59         }
60
61         AudioEngine* _engine = AudioEngine::instance ();
62
63         for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
64                 size_t count = std::max (scratch_buffers->available().get(*t), howmany.get(*t));
65                 size_t size;
66                 if (custom > 0) {
67                         size = custom;
68                 } else {
69                         size = (*t == DataType::MIDI)
70                                 ? _engine->raw_buffer_size (*t)
71                                 : _engine->raw_buffer_size (*t) / sizeof (Sample);
72                 }
73
74                 scratch_buffers->ensure_buffers (*t, count, size);
75                 noinplace_buffers->ensure_buffers (*t, count, size);
76                 mix_buffers->ensure_buffers (*t, count, size);
77                 silent_buffers->ensure_buffers (*t, count, size);
78                 route_buffers->ensure_buffers (*t, count, size);
79         }
80
81         size_t audio_buffer_size = custom > 0 ? custom : _engine->raw_buffer_size (DataType::AUDIO) / sizeof (Sample);
82
83         delete [] gain_automation_buffer;
84         gain_automation_buffer = new gain_t[audio_buffer_size];
85         delete [] trim_automation_buffer;
86         trim_automation_buffer = new gain_t[audio_buffer_size];
87         delete [] send_gain_automation_buffer;
88         send_gain_automation_buffer = new gain_t[audio_buffer_size];
89
90         allocate_pan_automation_buffers (audio_buffer_size, howmany.n_audio(), false);
91 }
92
93 void
94 ThreadBuffers::allocate_pan_automation_buffers (framecnt_t nframes, uint32_t howmany, bool force)
95 {
96         /* we always need at least 2 pan buffers */
97
98         howmany = max (2U, howmany);
99
100         if (!force && howmany <= npan_buffers) {
101                 return;
102         }
103
104         if (pan_automation_buffer) {
105
106                 for (uint32_t i = 0; i < npan_buffers; ++i) {
107                         delete [] pan_automation_buffer[i];
108                 }
109
110                 delete [] pan_automation_buffer;
111         }
112
113         pan_automation_buffer = new pan_t*[howmany];
114
115         for (uint32_t i = 0; i < howmany; ++i) {
116                 pan_automation_buffer[i] = new pan_t[nframes];
117         }
118
119         npan_buffers = howmany;
120 }