b07f70be1f8aa99f7afdca4875b645375a58e130
[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) {
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         assert (_owns_data);
52
53         if (size < _capacity) {
54                 return;
55         }
56
57         if (_data) {
58                 free (_data);
59         }
60
61         _capacity = size;
62         _size = size;
63         _silent = false;
64
65 #ifdef NO_POSIX_MEMALIGN
66         _data =  (Sample *) malloc(sizeof(Sample) * _capacity);
67 #else
68         posix_memalign((void**)&_data, CPU_CACHE_ALIGN, sizeof(Sample) * _capacity);
69 #endif  
70         
71         _owns_data = true;
72 }
73
74 } // namespace ARDOUR
75