9a41e8e093f82ceb6de9dab2cd9aab6e05727421
[ardour.git] / libs / ardour / ardour / audio_buffer.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_audio_buffer_h__
20 #define __ardour_audio_buffer_h__
21
22 #include <cstring>
23 #include <ardour/buffer.h>
24
25 namespace ARDOUR {
26
27 class AudioBuffer : public Buffer
28 {
29 public:
30         AudioBuffer(size_t capacity);
31         
32         ~AudioBuffer();
33
34         void silence(nframes_t len, nframes_t offset = 0) {
35                 if (!_silent) {
36                         assert(_capacity > 0);
37                         assert(offset + len <= _capacity);
38                         memset(_data + offset, 0, sizeof (Sample) * len);
39                         if (offset == 0 && len == _capacity) {
40                                 _silent = true;
41                         }
42                 }
43         }
44         
45         /** Read @a len frames FROM THE START OF @a src into self at @a offset */
46         void read_from(const Buffer& src, nframes_t len, nframes_t offset) {
47                 assert(&src != this);
48                 assert(_capacity > 0);
49                 assert(src.type() == DataType::AUDIO);
50                 assert(offset + len <= _capacity);
51                 memcpy(_data + offset, ((AudioBuffer&)src).data(), sizeof(Sample) * len);
52                 _silent = src.silent();
53         }
54         
55         /** Accumulate (add)@a len frames FROM THE START OF @a src into self at @a offset */
56         void accumulate_from(const AudioBuffer& src, nframes_t len, nframes_t offset) {
57                 assert(_capacity > 0);
58                 assert(offset + len <= _capacity);
59
60                 Sample*       const dst_raw = _data + offset;
61                 const Sample* const src_raw = src.data();
62
63                 mix_buffers_no_gain(dst_raw, src_raw, len);
64
65                 _silent = (src.silent() && _silent);
66         }
67         
68         /** Accumulate (add) @a len frames FROM THE START OF @a src into self at @a offset
69          * scaling by @a gain_coeff */
70         void accumulate_with_gain_from(const AudioBuffer& src, nframes_t len, nframes_t offset, gain_t gain_coeff) {
71                 assert(_capacity > 0);
72                 assert(offset + len <= _capacity);
73
74                 Sample*       const dst_raw = _data + offset;
75                 const Sample* const src_raw = src.data();
76
77                 mix_buffers_with_gain (dst_raw, src_raw, len, gain_coeff);
78
79                 _silent = ( (src.silent() && _silent) || (_silent && gain_coeff == 0) );
80         }
81
82         /** Accumulate (add) @a len frames FROM THE START OF @a src into self at @a offset
83          * scaling by @a gain_coeff */
84         void accumulate_with_gain_from(const Sample* src_raw, nframes_t len, nframes_t offset, gain_t gain_coeff) {
85                 assert(_capacity > 0);
86                 assert(offset + len <= _capacity);
87
88                 Sample*       const dst_raw = _data + offset;
89
90                 mix_buffers_with_gain (dst_raw, src_raw, len, gain_coeff);
91
92                 _silent = (_silent && gain_coeff == 0);
93         }
94         
95         void apply_gain(gain_t gain, nframes_t len, nframes_t offset=0) {
96                 apply_gain_to_buffer (_data + offset, len, gain);
97         }
98
99         /** Set the data contained by this buffer manually (for setting directly to jack buffer).
100          * 
101          * Constructor MUST have been passed capacity=0 or this will die (to prevent mem leaks).
102          */
103         void set_data (Sample* data, size_t size) {
104                 assert(!_owns_data); // prevent leaks
105                 _capacity = size;
106                 _size = size;
107                 _data = data;
108                 _silent = false;
109         }
110
111         /** Reallocate the buffer used internally to handle at least @nframes of data
112          * 
113          * Constructor MUST have been passed capacity!=0 or this will die (to prevent mem leaks).
114          */
115         void resize (size_t nframes);
116
117         const Sample* data () const { return _data; }
118         Sample* data () { return _data; }
119
120         const Sample* data(nframes_t nframes, nframes_t offset) const
121                 { assert(offset + nframes <= _capacity); return _data + offset; }
122
123         Sample* data (nframes_t nframes, nframes_t offset)
124                 { assert(offset + nframes <= _capacity); return _data + offset; }
125
126 private:
127         bool    _owns_data;
128         Sample* _data; ///< Actual buffer contents
129 };
130
131
132 } // namespace ARDOUR
133
134 #endif // __ardour_audio_audio_buffer_h__