Move panner bypass state up to the PannerShell so that it is preserved even when...
[ardour2.git] / libs / ardour / internal_return.cc
blob6402eded81a481895e3f558703f4795129ce65b3
1 /*
2 Copyright (C) 2009 Paul Davis
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.
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.
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.
19 #include <glibmm/thread.h>
21 #include "pbd/failed_constructor.h"
23 #include "ardour/audio_buffer.h"
24 #include "ardour/internal_return.h"
25 #include "ardour/mute_master.h"
26 #include "ardour/session.h"
27 #include "ardour/internal_send.h"
29 using namespace std;
30 using namespace ARDOUR;
32 PBD::Signal1<void, pframes_t> InternalReturn::CycleStart;
34 InternalReturn::InternalReturn (Session& s)
35 : Return (s, true)
37 CycleStart.connect_same_thread (*this, boost::bind (&InternalReturn::cycle_start, this, _1));
38 _display_to_user = false;
41 void
42 InternalReturn::run (BufferSet& bufs, framepos_t /*start_frame*/, framepos_t /*end_frame*/, pframes_t nframes, bool)
44 if (!_active && !_pending_active) {
45 return;
48 /* _sends is only modified with the process lock held, so this is ok, I think */
50 for (list<InternalSend*>::iterator i = _sends.begin(); i != _sends.end(); ++i) {
51 if ((*i)->active ()) {
52 bufs.merge_from ((*i)->get_buffers(), nframes);
56 #if 0
57 if (_session.transport_rolling()) {
58 for (BufferSet::audio_iterator b = bufs.audio_begin(); b != bufs.audio_end(); ++b) {
59 Sample* p = b->data ();
60 for (pframes_t n = 0; n < nframes; ++n) {
61 if (p[n] != 0.0) {
62 cerr << "\tnon-zero data received\n";
63 break;
68 #endif
71 _active = _pending_active;
74 bool
75 InternalReturn::configure_io (ChanCount in, ChanCount out)
77 IOProcessor::configure_io (in, out);
78 allocate_buffers (_session.engine().frames_per_cycle());
79 return true;
82 int
83 InternalReturn::set_block_size (pframes_t nframes)
85 allocate_buffers (nframes);
86 return 0;
89 void
90 InternalReturn::allocate_buffers (pframes_t nframes)
92 buffers.ensure_buffers (_configured_input, nframes);
93 buffers.set_count (_configured_input);
96 void
97 InternalReturn::add_send (InternalSend* send)
99 Glib::Mutex::Lock lm (_session.engine().process_lock());
100 _sends.push_back (send);
103 void
104 InternalReturn::remove_send (InternalSend* send)
106 Glib::Mutex::Lock lm (_session.engine().process_lock());
107 _sends.remove (send);
110 void
111 InternalReturn::cycle_start (pframes_t nframes)
113 /* called from process cycle - no lock necessary */
114 if (!_sends.empty ()) {
115 /* don't bother with this if nobody is going to feed us anything */
116 buffers.silence (nframes, 0);
120 XMLNode&
121 InternalReturn::state (bool full)
123 XMLNode& node (Return::state (full));
124 /* override type */
125 node.add_property("type", "intreturn");
126 return node;
129 XMLNode&
130 InternalReturn::get_state()
132 return state (true);
136 InternalReturn::set_state (const XMLNode& node, int version)
138 return Return::set_state (node, version);
141 bool
142 InternalReturn::can_support_io_configuration (const ChanCount& in, ChanCount& out) const
144 out = in;
145 return true;