Midi CC automation sending (send points only, no linear interpolation yet).
[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(NULL)
34 {
35         _size = capacity; // For audio buffers, size = capacity (always)
36         if (capacity > 0) {
37 #ifdef NO_POSIX_MEMALIGN
38                 _data =  (Sample *) malloc(sizeof(Sample) * capacity);
39 #else
40                 posix_memalign((void**)&_data, CPU_CACHE_ALIGN, sizeof(Sample) * capacity);
41 #endif  
42                 assert(_data);
43                 _owns_data = true;
44                 clear();
45         }
46 }
47
48 AudioBuffer::~AudioBuffer()
49 {
50         if (_owns_data)
51                 free(_data);
52 }
53
54
55 } // namespace ARDOUR
56