Merge branch 'windows+cc' into cairocanvas
[ardour.git] / libs / ardour / audio_buffer.cc
1 /*
2     Copyright (C) 2006-2007 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 #include <errno.h>
20
21 #include "ardour/audio_buffer.h"
22 #include "pbd/error.h"
23 #include "pbd/malign.h"
24
25 #include "i18n.h"
26
27 using namespace PBD;
28 using namespace ARDOUR;
29
30 AudioBuffer::AudioBuffer(size_t capacity)
31         : Buffer (DataType::AUDIO)
32         , _owns_data (false)
33         , _data (0)
34 {
35         if (capacity) {
36                 _owns_data = true; // prevent resize() from gagging
37                 resize (capacity);
38                 _silent = false; // force silence on the intial buffer state
39                 clear ();
40         }
41 }
42
43 AudioBuffer::~AudioBuffer()
44 {
45         if (_owns_data)
46                 free(_data);
47 }
48
49 void
50 AudioBuffer::resize (size_t size)
51 {
52         if (!_owns_data) {
53                 /* XXX how the hell is this enforced? */
54                 _capacity = size;
55                 return;
56         }
57
58         if (_data && size < _capacity) {
59                 /* buffer is already large enough */
60                 
61                 if (size < _size) {
62                         /* truncate */
63                         _size = size;
64                 }
65
66                 return;
67         }
68
69         free (_data);
70
71         cache_aligned_malloc ((void**) &_data, sizeof (Sample) * size);
72
73         _capacity = size;
74         _size = 0;
75         _silent = false;
76 }
77
78 bool
79 AudioBuffer::check_silence (pframes_t nframes, bool wholebuffer, pframes_t& n) const
80 {
81         for (n = 0; (wholebuffer || n < _size) &&  n < nframes; ++n) {
82                 if (_data[n] != Sample (0)) {
83                         return false;
84                 }
85         }
86         return true;
87 }
88
89 void
90 AudioBuffer::silence (framecnt_t len, framecnt_t offset) {
91
92         if (!_silent) {
93                 assert(_capacity > 0);
94                 assert(offset + len <= _capacity);
95                 memset(_data + offset, 0, sizeof (Sample) * len);
96                 if (len == _capacity) {
97                         _silent = true;
98                 }
99         }
100         _written = true;
101 }