Initial backend support for external export encoder
[ardour.git] / libs / ardour / panner.cc
1 /*
2     Copyright (C) 2004-2011 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 "ardour/buffer_set.h"
21 #include "ardour/debug.h"
22 #include "ardour/panner.h"
23 #include "ardour/pannable.h"
24
25 #include "pbd/i18n.h"
26
27 using namespace std;
28 using namespace ARDOUR;
29
30 Panner::Panner (boost::shared_ptr<Pannable> p)
31         : _frozen (0)
32 {
33         // boost_debug_shared_ptr_mark_interesting (this, "panner");
34         _pannable = p;
35 }
36
37 Panner::~Panner ()
38 {
39         DEBUG_TRACE(PBD::DEBUG::Destruction, string_compose ("panner @ %1 destructor, pannable is %2 @ %3\n", this, _pannable, &_pannable));
40 }
41
42 XMLNode&
43 Panner::get_state ()
44 {
45         return *(new XMLNode (X_("Panner")));
46 }
47
48 void
49 Panner::distribute (BufferSet& ibufs, BufferSet& obufs, gain_t gain_coeff, pframes_t nframes)
50 {
51         uint32_t which = 0;
52
53         for (BufferSet::audio_iterator src = ibufs.audio_begin(); src != ibufs.audio_end(); ++src, ++which) {
54                 distribute_one (*src, obufs, gain_coeff, nframes, which);
55         }
56 }
57
58 void
59 Panner::distribute_automated (BufferSet& ibufs, BufferSet& obufs,
60                               samplepos_t start, samplepos_t end, pframes_t nframes, pan_t** buffers)
61 {
62         uint32_t which = 0;
63
64         for (BufferSet::audio_iterator src = ibufs.audio_begin(); src != ibufs.audio_end(); ++src, ++which) {
65                 distribute_one_automated (*src, obufs, start, end, nframes, buffers, which);
66         }
67 }
68
69 void
70 Panner::set_automation_state (AutoState state)
71 {
72         _pannable->set_automation_state (state);
73 }
74
75 AutoState
76 Panner::automation_state () const
77 {
78         return _pannable->automation_state();
79 }
80
81 bool
82 Panner::touching () const
83 {
84         return _pannable->touching ();
85 }
86
87 set<Evoral::Parameter>
88 Panner::what_can_be_automated() const
89 {
90         return _pannable->what_can_be_automated ();
91 }
92
93 string
94 Panner::describe_parameter (Evoral::Parameter p)
95 {
96         return _pannable->describe_parameter (p);
97 }
98
99 string
100 Panner::value_as_string (boost::shared_ptr<const AutomationControl> ac) const
101 {
102         return _pannable->value_as_string (ac);
103 }
104
105 int
106 Panner::set_state (XMLNode const &, int)
107 {
108         return 0;
109 }
110
111 void
112 Panner::freeze ()
113 {
114         _frozen++;
115 }
116
117 void
118 Panner::thaw ()
119 {
120         if (_frozen > 0.0) {
121                 _frozen--;
122         }
123 }