fix crash when copy'ing latent plugins
[ardour.git] / libs / ardour / audio_port.cc
1 /*
2     Copyright (C) 2006 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 #include <cassert>
20
21 #include "pbd/stacktrace.h"
22
23 #include "ardour/audio_buffer.h"
24 #include "ardour/audioengine.h"
25 #include "ardour/audio_port.h"
26 #include "ardour/data_type.h"
27 #include "ardour/port_engine.h"
28
29 using namespace ARDOUR;
30 using namespace std;
31
32 #define port_engine AudioEngine::instance()->port_engine()
33
34 AudioPort::AudioPort (const std::string& name, PortFlags flags)
35         : Port (name, DataType::AUDIO, flags)
36         , _buffer (new AudioBuffer (0))
37 {
38         assert (name.find_first_of (':') == string::npos);
39 }
40
41 AudioPort::~AudioPort ()
42 {
43         delete _buffer;
44 }
45
46 void
47 AudioPort::cycle_start (pframes_t nframes)
48 {
49         /* caller must hold process lock */
50
51         Port::cycle_start (nframes);
52
53         if (sends_output()) {
54                 _buffer->prepare ();
55         }
56 }
57
58 void
59 AudioPort::cycle_end (pframes_t nframes)
60 {
61         if (sends_output() && !_buffer->written()) {
62                 if (!_buffer->data (0)) {
63                         get_audio_buffer (nframes);
64                 }
65                 if (_buffer->capacity() >= nframes) {
66                         _buffer->silence (nframes);
67                 }
68         }
69 }
70
71 void
72 AudioPort::cycle_split ()
73 {
74 }
75
76 AudioBuffer&
77 AudioPort::get_audio_buffer (pframes_t nframes)
78 {
79         /* caller must hold process lock */
80         _buffer->set_data ((Sample *) port_engine.get_buffer (_port_handle, _cycle_nframes) +
81                            _global_port_buffer_offset + _port_buffer_offset, nframes);
82         return *_buffer;
83 }
84
85 Sample*
86 AudioPort::engine_get_whole_audio_buffer ()
87 {
88         /* caller must hold process lock */
89         return (Sample *) port_engine.get_buffer (_port_handle, _cycle_nframes);
90 }
91
92
93
94