8444304832384e2a7df76d2f0532c66d6c78063f
[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 <ardour/audio_buffer.h>
20
21 #ifdef __x86_64__
22 static const int CPU_CACHE_ALIGN = 64;
23 #else
24 static const int CPU_CACHE_ALIGN = 16; /* arguably 32 on most arches, but it matters less */
25 #endif
26
27 namespace ARDOUR {
28
29
30 AudioBuffer::AudioBuffer(size_t capacity)
31         : Buffer(DataType::AUDIO, capacity)
32         , _owns_data (false)
33         , _data (0)
34 {
35         if (_capacity > 0) {
36                 _owns_data = true; // prevent resize() from gagging
37                 resize (_capacity);
38                 silence (_capacity);
39         }
40 }
41
42 AudioBuffer::~AudioBuffer()
43 {
44         if (_owns_data)
45                 free(_data);
46 }
47
48 void
49 AudioBuffer::resize (size_t size)
50 {
51         if (!_owns_data || (size < _capacity)) {
52                 return;
53         }
54
55         if (_data) {
56                 free (_data);
57         }
58
59         _capacity = size;
60         _size = size;
61         _silent = false;
62
63 #ifdef NO_POSIX_MEMALIGN
64         _data =  (Sample *) malloc(sizeof(Sample) * _capacity);
65 #else
66         posix_memalign((void**)&_data, CPU_CACHE_ALIGN, sizeof(Sample) * _capacity);
67 #endif  
68         
69         _owns_data = true;
70 }
71
72 } // namespace ARDOUR
73