~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to libs/ardour/panner.cc

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 "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
                              framepos_t start, framepos_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_style (AutoStyle style)
 
71
{
 
72
        _pannable->set_automation_style (style);
 
73
}
 
74
 
 
75
void
 
76
Panner::set_automation_state (AutoState state)
 
77
{
 
78
        _pannable->set_automation_state (state);
 
79
}
 
80
 
 
81
AutoState
 
82
Panner::automation_state () const
 
83
{
 
84
        return _pannable->automation_state();
 
85
}
 
86
 
 
87
AutoStyle
 
88
Panner::automation_style () const
 
89
{
 
90
        return _pannable->automation_style ();
 
91
}
 
92
 
 
93
bool
 
94
Panner::touching () const
 
95
{
 
96
        return _pannable->touching ();
 
97
}
 
98
 
 
99
set<Evoral::Parameter>
 
100
Panner::what_can_be_automated() const
 
101
{
 
102
        return _pannable->what_can_be_automated ();
 
103
}
 
104
 
 
105
string
 
106
Panner::describe_parameter (Evoral::Parameter p)
 
107
{
 
108
        return _pannable->describe_parameter (p);
 
109
}
 
110
 
 
111
string
 
112
Panner::value_as_string (boost::shared_ptr<AutomationControl> ac) const
 
113
{
 
114
        return _pannable->value_as_string (ac);
 
115
}
 
116
 
 
117
int
 
118
Panner::set_state (XMLNode const &, int)
 
119
{
 
120
        return 0;
 
121
}
 
122
 
 
123
void
 
124
Panner::freeze ()
 
125
{
 
126
        _frozen++;
 
127
}
 
128
 
 
129
void
 
130
Panner::thaw ()
 
131
{
 
132
        if (_frozen > 0.0) {
 
133
                _frozen--;
 
134
        }
 
135
}