89c9c19b916940e49c2cf3bc81a8a44ec259690e
[ardour.git] / libs / ardour / ardour / amp.h
1 /*
2     Copyright (C) 2006 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify it
5     under the terms of the GNU General Public License as published by the Free
6     Software Foundation; either version 2 of the License, or (at your option)
7     any later version.
8
9     This program is distributed in the hope that it will be useful, but WITHOUT
10     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12     for more details.
13
14     You should have received a copy of the GNU General Public License along
15     with this program; if not, write to the Free Software Foundation, Inc.,
16     675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __ardour_amp_h__
20 #define __ardour_amp_h__
21
22 #include "ardour/dB.h"
23 #include "ardour/libardour_visibility.h"
24 #include "ardour/types.h"
25 #include "ardour/chan_count.h"
26 #include "ardour/processor.h"
27 #include "ardour/automation_control.h"
28
29 namespace ARDOUR {
30
31 class BufferSet;
32 class GainControl;
33 class IO;
34
35 /** Applies a declick operation to all audio inputs, passing the same number of
36  * audio outputs, and passing through any other types unchanged.
37  */
38 class LIBARDOUR_API Amp : public Processor {
39 public:
40         Amp(Session& s, const std::string& display_name, boost::shared_ptr<GainControl> control, bool control_midi_also);
41
42         std::string display_name () const { return _display_name; }
43         void set_display_name (const std::string& name) { _display_name = name; }
44
45         bool visible () const;
46
47         bool can_support_io_configuration (const ChanCount& in, ChanCount& out);
48         bool configure_io (ChanCount in, ChanCount out);
49
50         void run (BufferSet& bufs, samplepos_t start_sample, samplepos_t end_sample, double speed, pframes_t nframes, bool);
51
52         void set_gain_automation_buffer (gain_t *);
53
54         void setup_gain_automation (samplepos_t start_sample, samplepos_t end_sample, samplecnt_t nframes);
55
56         bool apply_gain_automation() const  { return _apply_gain_automation; }
57
58         XMLNode& state (bool full);
59         int set_state (const XMLNode&, int version);
60
61         static gain_t apply_gain (BufferSet& bufs, samplecnt_t sample_rate, samplecnt_t nframes, gain_t initial, gain_t target, bool midi_amp = true);
62         static void apply_simple_gain(BufferSet& bufs, samplecnt_t nframes, gain_t target, bool midi_amp = true);
63
64         static gain_t apply_gain (AudioBuffer& buf, samplecnt_t sample_rate, samplecnt_t nframes, gain_t initial, gain_t target);
65         static void apply_simple_gain(AudioBuffer& buf, samplecnt_t nframes, gain_t target);
66
67         static void declick (BufferSet& bufs, samplecnt_t nframes, int dir);
68         static void update_meters();
69
70         boost::shared_ptr<GainControl> gain_control() {
71                 return _gain_control;
72         }
73
74         boost::shared_ptr<const GainControl> gain_control() const {
75                 return _gain_control;
76         }
77
78 private:
79         bool   _denormal_protection;
80         bool   _apply_gain_automation;
81         float  _current_gain;
82         samplepos_t _current_automation_sample;
83
84         std::string _display_name;
85
86         boost::shared_ptr<GainControl> _gain_control;
87
88         /** Buffer that we should use for gain automation */
89         gain_t* _gain_automation_buffer;
90         bool _midi_amp;
91 };
92
93
94 } // namespace ARDOUR
95
96 #endif // __ardour_amp_h__