915fdeb948adc75ec1d988ca2638cd59891dc962
[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 #include <pbd/error.h>
21 #include <errno.h>
22
23 #include "i18n.h"
24
25 #ifdef __x86_64__
26 static const int CPU_CACHE_ALIGN = 64;
27 #else
28 static const int CPU_CACHE_ALIGN = 16; /* arguably 32 on most arches, but it matters less */
29 #endif
30
31 using namespace PBD;
32
33 namespace ARDOUR {
34
35
36 AudioBuffer::AudioBuffer(size_t capacity)
37         : Buffer(DataType::AUDIO, capacity)
38         , _owns_data (false)
39         , _data (0)
40 {
41         if (_capacity > 0) {
42                 _owns_data = true; // prevent resize() from gagging
43                 resize (_capacity);
44                 silence (_capacity);
45         }
46 }
47
48 AudioBuffer::~AudioBuffer()
49 {
50         if (_owns_data)
51                 free(_data);
52 }
53
54 void
55 AudioBuffer::resize (size_t size)
56 {
57         if (!_owns_data || (size < _capacity)) {
58                 return;
59         }
60
61         if (_data) {
62                 free (_data);
63         }
64
65         _capacity = size;
66         _size = size;
67         _silent = false;
68
69 #ifdef NO_POSIX_MEMALIGN
70         _data =  (Sample *) malloc(sizeof(Sample) * _capacity);
71 #else
72         if (posix_memalign((void**)&_data, CPU_CACHE_ALIGN, sizeof(Sample) * _capacity)) {
73                 fatal << string_compose (_("Memory allocation error: posix_memalign (%1 * %2) failed (%3)"),
74                                 CPU_CACHE_ALIGN, sizeof (Sample) * _capacity, strerror (errno)) << endmsg;
75         }
76 #endif  
77         
78         _owns_data = true;
79 }
80
81 } // namespace ARDOUR
82