Fixes to bundle manager to make it vaguely usable.
[ardour.git] / libs / ardour / audio_buffer.cc
index 059b61ed2f1ea4a41c4446b130209c487274e8be..506b34eb04d8202378866f85cde01279c6fea1e4 100644 (file)
 */
 
 #include <ardour/audio_buffer.h>
+#include <pbd/error.h>
+#include <errno.h>
+
+#include "i18n.h"
 
 #ifdef __x86_64__
 static const int CPU_CACHE_ALIGN = 64;
@@ -24,24 +28,19 @@ static const int CPU_CACHE_ALIGN = 64;
 static const int CPU_CACHE_ALIGN = 16; /* arguably 32 on most arches, but it matters less */
 #endif
 
-namespace ARDOUR {
-
+using namespace PBD;
+using namespace ARDOUR;
 
 AudioBuffer::AudioBuffer(size_t capacity)
        : Buffer(DataType::AUDIO, capacity)
-       , _owns_data(false)
-       , _data(NULL)
+       , _owns_data (false)
+       , _data (0)
 {
-       _size = capacity; // For audio buffers, size = capacity (always)
-       if (capacity > 0) {
-#ifdef NO_POSIX_MEMALIGN
-               _data =  (Sample *) malloc(sizeof(Sample) * capacity);
-#else
-               posix_memalign((void**)&_data, CPU_CACHE_ALIGN, sizeof(Sample) * capacity);
-#endif 
-               assert(_data);
-               _owns_data = true;
-               clear();
+       if (_capacity > 0) {
+               _owns_data = true; // prevent resize() from gagging
+               resize (_capacity);
+               _silent = false; // force silence on the intial buffer state
+               silence (_capacity);
        }
 }
 
@@ -51,6 +50,53 @@ AudioBuffer::~AudioBuffer()
                free(_data);
 }
 
+/* called to replace a pointer to an external buffer (e.g. JACK) with 
+   buffer-owned memory.
+*/
+
+void
+AudioBuffer::replace_data (size_t capacity)
+{
+       _owns_data = true;
+       _data = 0;
+       _capacity = 0; // force reallocation
+       resize (capacity);
+}
+
+void
+AudioBuffer::resize (size_t size)
+{
+       if (!_owns_data) {
+               return;
+       }
+
+       if (size < _capacity) {
+               _size = size;
+               return;
+       }
+
+       if (_data) {
+               free (_data);
+       }
+
+       _capacity = size;
+       _size = size;
+       _silent = false;
 
-} // namespace ARDOUR
+#ifdef NO_POSIX_MEMALIGN
+       _data =  (Sample *) malloc(sizeof(Sample) * _capacity);
+#else
+       if (posix_memalign((void**)&_data, CPU_CACHE_ALIGN, sizeof(Sample) * _capacity)) {
+               fatal << string_compose (_("Memory allocation error: posix_memalign (%1 * %2) failed (%3)"),
+                               CPU_CACHE_ALIGN, sizeof (Sample) * _capacity, strerror (errno)) << endmsg;
+       }
+#endif 
+
+}
+
+void
+AudioBuffer::copy_to_internal (Sample* p, nframes_t cnt, nframes_t offset)
+{
+       memcpy (_data + offset, p, sizeof(Sample*) * cnt);
+}