fix up wscript/build issues in exportvis after merge with master
[ardour.git] / libs / ardour / ardour / audio_buffer.h
index 57c5de612482695692a9766cfb0cf44feda83ae2..5f72065d63cefd10faa5df3db87749869026dcac 100644 (file)
 #define __ardour_audio_buffer_h__
 
 #include <cstring>
+
 #include "ardour/buffer.h"
+#include "ardour/runtime_functions.h"
 
 namespace ARDOUR {
 
 /** Buffer containing audio data. */
-class AudioBuffer : public Buffer
+class LIBARDOUR_API AudioBuffer : public Buffer
 {
 public:
        AudioBuffer(size_t capacity);
@@ -43,6 +45,28 @@ public:
                _written = true;
        }
 
+       /** Read @a len frames @a src starting at @a src_offset into self starting at @ dst_offset*/
+       void read_from (const Sample* src, framecnt_t len, framecnt_t dst_offset = 0, framecnt_t src_offset = 0) {
+               assert(src != 0);
+               assert(_capacity > 0);
+               assert(len <= _capacity);
+               memcpy(_data + dst_offset, src + src_offset, sizeof(Sample) * len);
+               _silent = false;
+               _written = true;
+       }
+
+        void read_from_with_gain (const Sample* src, framecnt_t len, gain_t gain, framecnt_t dst_offset = 0, framecnt_t src_offset = 0) {
+               assert(src != 0);
+               assert(_capacity > 0);
+               assert(len <= _capacity);
+               src += src_offset;
+               for (framecnt_t n = 0; n < len; ++n) {
+                       _data[dst_offset+n] = src[n] * gain;
+               }
+               _silent = false;
+               _written = true;
+       }
+
        /** Read @a len frames @a src starting at @a src_offset into self starting at @ dst_offset*/
        void read_from (const Buffer& src, framecnt_t len, framecnt_t dst_offset = 0, framecnt_t src_offset = 0) {
                assert(&src != this);
@@ -50,7 +74,7 @@ public:
                assert(src.type() == DataType::AUDIO);
                assert(len <= _capacity);
                assert( src_offset <= ((framecnt_t) src.capacity()-len));
-               memcpy(_data + dst_offset, ((AudioBuffer&)src).data() + src_offset, sizeof(Sample) * len);
+               memcpy(_data + dst_offset, ((const AudioBuffer&)src).data() + src_offset, sizeof(Sample) * len);
                if (dst_offset == 0 && src_offset == 0 && len == _capacity) {
                        _silent = src.silent();
                } else {
@@ -80,6 +104,20 @@ public:
                _written = true;
        }
 
+       /** Acumulate (add) @a len frames @a src starting at @a src_offset into self starting at @a dst_offset */
+       void accumulate_from (const Sample* src, framecnt_t len, framecnt_t dst_offset = 0, framecnt_t src_offset = 0) {
+               assert(_capacity > 0);
+               assert(len <= _capacity);
+
+               Sample*       const dst_raw = _data + dst_offset;
+               const Sample* const src_raw = src + src_offset;
+
+               mix_buffers_no_gain(dst_raw, src_raw, len);
+               
+               _silent = false;
+               _written = true;
+       }
+
        /** Acumulate (add) @a len frames @a src starting at @a src_offset into self starting at @dst_offset
         * scaling by @a gain_coeff */
        void accumulate_with_gain_from (const AudioBuffer& src, framecnt_t len, gain_t gain_coeff, framecnt_t dst_offset = 0, framecnt_t src_offset = 0) {
@@ -169,8 +207,11 @@ public:
                return _data + offset;
        }
 
+        bool check_silence (pframes_t, pframes_t&) const;
+
        void prepare () { _written = false; _silent = false; }
        bool written() const { return _written; }
+       void set_written(bool w) { _written = w; }
 
   private:
        bool    _owns_data;