initial check in of VBAP implementation (not coupled to any existing ardour objects...
[ardour.git] / libs / ardour / buffer_set.cc
index 319444e1b94990c6b22bdb66dd6ef9f0ac1c080e..4c802b1443e26d815828a3846349b747f47301ca 100644 (file)
@@ -1,21 +1,26 @@
 /*
-    Copyright (C) 2006 Paul Davis 
-    
+    Copyright (C) 2006 Paul Davis
+
     This program is free software; you can redistribute it and/or modify it
     under the terms of the GNU General Public License as published by the Free
     Software Foundation; either version 2 of the License, or (at your option)
     any later version.
-    
+
     This program is distributed in the hope that it will be useful, but WITHOUT
     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
     for more details.
-    
+
     You should have received a copy of the GNU General Public License along
     with this program; if not, write to the Free Software Foundation, Inc.,
     675 Mass Ave, Cambridge, MA 02139, USA.
 */
 
+
+#ifdef WAF_BUILD
+#include "libardour-config.h"
+#endif
+
 #include <iostream>
 #include <algorithm>
 #include "ardour/buffer.h"
 #include "ardour/lv2_plugin.h"
 #include "ardour/lv2_event_buffer.h"
 #endif
+#ifdef VST_SUPPORT
+#include "vestige/aeffectx.h"
+#endif
 
 namespace ARDOUR {
 
 /** Create a new, empty BufferSet */
 BufferSet::BufferSet()
        : _is_mirror(false)
-       , _is_silent(false)
 {
        for (size_t i=0; i < DataType::num_types; ++i) {
                _buffers.push_back(BufferVec());
@@ -65,6 +72,14 @@ BufferSet::clear()
        _buffers.clear();
        _count.reset();
        _available.reset();
+
+#ifdef VST_SUPPORT     
+       for (VSTBuffers::iterator i = _vst_buffers.begin(); i != _vst_buffers.end(); ++i) {
+               delete *i;
+       }
+
+       _vst_buffers.clear ();
+#endif 
 }
 
 /** Make this BufferSet a direct mirror of a PortSet's buffers.
@@ -83,7 +98,7 @@ BufferSet::attach_buffers(PortSet& ports, nframes_t nframes, nframes_t offset)
                        v.push_back(&(p->get_buffer(nframes, offset)));
                }
        }
-       
+
        _count = ports.count();
        _available = ports.count();
 
@@ -105,7 +120,7 @@ BufferSet::ensure_buffers(DataType type, size_t num_buffers, size_t buffer_capac
 
        // The vector of buffers of the type we care about
        BufferVec& bufs = _buffers[type];
-       
+
        // If we're a mirror just make sure we're ok
        if (_is_mirror) {
                assert(_count.get(type) >= num_buffers);
@@ -128,8 +143,9 @@ BufferSet::ensure_buffers(DataType type, size_t num_buffers, size_t buffer_capac
                for (size_t i = 0; i < num_buffers; ++i) {
                        bufs.push_back(Buffer::create(type, buffer_capacity));
                }
-       
+
                _available.set(type, num_buffers);
+               _count.set (type, num_buffers);
        }
 
 #ifdef HAVE_SLV2
@@ -142,6 +158,15 @@ BufferSet::ensure_buffers(DataType type, size_t num_buffers, size_t buffer_capac
        }
 #endif
 
+#ifdef VST_SUPPORT
+       // As above but for VST
+       if (type == DataType::MIDI) {
+               while (_vst_buffers.size() < _buffers[type].size()) {
+                       _vst_buffers.push_back (new VSTBuffer (buffer_capacity));
+               }
+       }
+#endif 
+
        // Post-conditions
        assert(bufs[0]->type() == type);
        assert(bufs.size() >= num_buffers);
@@ -149,6 +174,17 @@ BufferSet::ensure_buffers(DataType type, size_t num_buffers, size_t buffer_capac
        assert(bufs[0]->capacity() >= buffer_capacity);
 }
 
+/** Ensure that the number of buffers of each type @a type matches @a chns
+ * and each buffer is of size at least @a buffer_capacity
+ */
+void
+BufferSet::ensure_buffers(const ChanCount& chns, size_t buffer_capacity)
+{
+       for (DataType::iterator i = DataType::begin(); i != DataType::end(); ++i) {
+               ensure_buffers (*i, chns.get (*i), buffer_capacity);
+       }
+}
+
 /** Get the capacity (size) of the available buffers of the given type.
  *
  * All buffers of a certain type always have the same capacity.
@@ -167,15 +203,24 @@ BufferSet::get(DataType type, size_t i)
        return *_buffers[type][i];
 }
 
+const Buffer&
+BufferSet::get(DataType type, size_t i) const
+{
+       assert(i < _available.get(type));
+       return *_buffers[type][i];
+}
+
 #ifdef HAVE_SLV2
 
 LV2EventBuffer&
 BufferSet::get_lv2_midi(bool input, size_t i)
 {
+       assert (count().get(DataType::MIDI) > i);
+       
        MidiBuffer& mbuf = get_midi(i);
        LV2Buffers::value_type b = _lv2_buffers.at(i * 2 + (input ? 0 : 1));
        LV2EventBuffer* ebuf = b.second;
-       
+
        ebuf->reset();
        if (input) {
                for (MidiBuffer::iterator e = mbuf.begin(); e != mbuf.end(); ++e) {
@@ -206,18 +251,96 @@ BufferSet::flush_lv2_midi(bool input, size_t i)
        }
 }
 
-#endif
+#endif /* HAVE_SLV2 */
+
+#ifdef VST_SUPPORT
+
+VstEvents*
+BufferSet::get_vst_midi (size_t b)
+{
+       MidiBuffer& m = get_midi (b);
+       VSTBuffer* vst = _vst_buffers[b];
+
+       vst->clear ();
+
+       for (MidiBuffer::iterator i = m.begin(); i != m.end(); ++i) {
+               vst->push_back (*i);
+       }
+       
+       return vst->events();
+}
+
+BufferSet::VSTBuffer::VSTBuffer (size_t c)
+  : _capacity (c)
+{
+       _events = static_cast<VstEvents*> (malloc (sizeof (VstEvents) + _capacity * sizeof (VstEvent *)));
+       _midi_events = static_cast<VstMidiEvent*> (malloc (sizeof (VstMidiEvent) * _capacity));
+
+       if (_events == 0 || _midi_events == 0) {
+               free (_events);
+               free (_midi_events);
+               throw failed_constructor ();
+       }
+
+       _events->numEvents = 0;
+       _events->reserved = 0;
+}
+
+BufferSet::VSTBuffer::~VSTBuffer ()
+{
+       free (_events);
+       free (_midi_events);
+}
+
+void
+BufferSet::VSTBuffer::clear ()
+{
+       _events->numEvents = 0;
+}
+
+void
+BufferSet::VSTBuffer::push_back (Evoral::MIDIEvent<nframes_t> const & ev)
+{
+       if (ev.size() > 3) {
+               /* XXX: this will silently drop MIDI messages longer than 3 bytes, so
+                  they won't be passed to VST plugins or VSTis
+               */
+               return;
+       }
+       int const n = _events->numEvents;
+       assert (n < (int) _capacity);
+
+       _events->events[n] = reinterpret_cast<VstEvent*> (_midi_events + n);
+       VstMidiEvent* v = reinterpret_cast<VstMidiEvent*> (_events->events[n]);
+       
+       v->type = kVstMidiType;
+       v->byteSize = sizeof (VstMidiEvent);
+       v->deltaFrames = ev.time ();
+
+       v->flags = 0;
+       v->detune = 0;
+       v->noteLength = 0;
+       v->noteOffset = 0;
+       v->reserved1 = 0;
+       v->reserved2 = 0;
+       v->noteOffVelocity = 0;
+       memcpy (v->midiData, ev.buffer(), ev.size());
+       v->midiData[3] = 0;
+
+       _events->numEvents++;
+}
+
+#endif /* VST_SUPPORT */
 
-// FIXME: make 'in' const
 void
-BufferSet::read_from (BufferSet& in, nframes_t nframes)
+BufferSet::read_from (const BufferSet& in, nframes_t nframes)
 {
        assert(available() >= in.count());
 
        // Copy all buffers 1:1
        for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
                BufferSet::iterator o = begin(*t);
-               for (BufferSet::iterator i = in.begin(*t); i != in.end(*t); ++i, ++o) {
+               for (BufferSet::const_iterator i = in.begin(*t); i != in.end(*t); ++i, ++o) {
                        o->read_from (*i, nframes);
                }
        }
@@ -225,21 +348,22 @@ BufferSet::read_from (BufferSet& in, nframes_t nframes)
        set_count(in.count());
 }
 
-// FIXME: make 'in' const
 void
-BufferSet::merge_from (BufferSet& in, nframes_t nframes)
+BufferSet::merge_from (const BufferSet& in, nframes_t nframes)
 {
-       assert(available() >= in.count());
+       /* merge all input buffers into out existing buffers.
+
+          NOTE: if "in" contains more buffers than this set,
+          we will drop the extra buffers.
+
+       */
 
-       /* merge all input buffers into out existing buffers */
        for (DataType::iterator t = DataType::begin(); t != DataType::end(); ++t) {
                BufferSet::iterator o = begin(*t);
-               for (BufferSet::iterator i = in.begin(*t); i != in.end(*t); ++i, ++o) {
+               for (BufferSet::const_iterator i = in.begin(*t); i != in.end(*t) && o != end (*t); ++i, ++o) {
                        o->merge_from (*i, nframes);
                }
        }
-
-       set_count (in.count());
 }
 
 void
@@ -252,5 +376,16 @@ BufferSet::silence (nframes_t nframes, nframes_t offset)
        }
 }
 
+void
+BufferSet::is_silent (bool yn)
+{
+       for (std::vector<BufferVec>::iterator i = _buffers.begin(); i != _buffers.end(); ++i) {
+               for (BufferVec::iterator b = i->begin(); b != i->end(); ++b) {
+                       (*b)->is_silent (yn);
+               }
+       }
+               
+}
+
 } // namespace ARDOUR