* Add SysEx Support to MidiModel / SMF
[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 using namespace ARDOUR;
33
34 AudioBuffer::AudioBuffer(size_t capacity)
35         : Buffer(DataType::AUDIO, capacity)
36         , _owns_data (false)
37         , _data (0)
38 {
39         if (_capacity > 0) {
40                 _owns_data = true; // prevent resize() from gagging
41                 resize (_capacity);
42                 _silent = false; // force silence on the intial buffer state
43                 silence (_capacity);
44         }
45 }
46
47 AudioBuffer::~AudioBuffer()
48 {
49         if (_owns_data)
50                 free(_data);
51 }
52
53 /* called to replace a pointer to an external buffer (e.g. JACK) with 
54    buffer-owned memory.
55 */
56
57 void
58 AudioBuffer::replace_data (size_t capacity)
59 {
60         _owns_data = true;
61         _data = 0;
62         _capacity = 0; // force reallocation
63         resize (capacity);
64 }
65
66 void
67 AudioBuffer::resize (size_t size)
68 {
69         if (!_owns_data) {
70                 return;
71         }
72
73         if (size < _capacity) {
74                 _size = size;
75                 return;
76         }
77
78         if (_data) {
79                 free (_data);
80         }
81
82         _capacity = size;
83         _size = size;
84         _silent = false;
85
86 #ifdef NO_POSIX_MEMALIGN
87         _data =  (Sample *) malloc(sizeof(Sample) * _capacity);
88 #else
89         if (posix_memalign((void**)&_data, CPU_CACHE_ALIGN, sizeof(Sample) * _capacity)) {
90                 fatal << string_compose (_("Memory allocation error: posix_memalign (%1 * %2) failed (%3)"),
91                                 CPU_CACHE_ALIGN, sizeof (Sample) * _capacity, strerror (errno)) << endmsg;
92         }
93 #endif  
94
95 }
96
97 void
98 AudioBuffer::copy_to_internal (Sample* p, nframes_t cnt, nframes_t offset)
99 {
100         memcpy (_data + offset, p, sizeof(Sample*) * cnt);
101 }
102