X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fardour%2Fbuffer_set.h;h=5b0234de46724865ea25e624557e101101c34c67;hb=cd2047cbffc5e0270acab555364bb9d958fe7927;hp=43df729e05d3a3662e10c8ddbd2e290a81322867;hpb=7250433f50236a05fc652fa41c23bf53fbf6a0fd;p=ardour.git diff --git a/libs/ardour/ardour/buffer_set.h b/libs/ardour/ardour/buffer_set.h index 43df729e05..5b0234de46 100644 --- a/libs/ardour/ardour/buffer_set.h +++ b/libs/ardour/ardour/buffer_set.h @@ -1,16 +1,16 @@ /* - 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. @@ -19,10 +19,21 @@ #ifndef __ardour_buffer_set_h__ #define __ardour_buffer_set_h__ +#ifdef WAF_BUILD +#include "libardour-config.h" +#endif + #include #include -#include -#include +#include "ardour/chan_count.h" +#include "ardour/data_type.h" +#include "ardour/types.h" + +#if defined VST_SUPPORT || defined LXVST_SUPPORT +#include "evoral/MIDIEvent.hpp" +struct VstEvents; +struct VstMidiEvent; +#endif namespace ARDOUR { @@ -30,7 +41,9 @@ class Buffer; class AudioBuffer; class MidiBuffer; class PortSet; - +#ifdef LV2_SUPPORT +class LV2EventBuffer; +#endif /** A set of buffers of various types. * @@ -52,11 +65,17 @@ public: ~BufferSet(); void clear(); - - void attach_buffers(PortSet& ports); - void ensure_buffers(const ChanCount& count, size_t buffer_capacity); + void attach_buffers (PortSet& ports); + void get_jack_port_addresses (PortSet &, framecnt_t); + + /* the capacity here is a size_t and has a different interpretation depending + on the DataType of the buffers. for audio, its a frame count. for MIDI + its a byte count. + */ + void ensure_buffers(DataType type, size_t num_buffers, size_t buffer_capacity); + void ensure_buffers(const ChanCount& chns, size_t buffer_capacity); const ChanCount& available() const { return _available; } ChanCount& available() { return _available; } @@ -64,94 +83,132 @@ public: const ChanCount& count() const { return _count; } ChanCount& count() { return _count; } - void set_count(const ChanCount& count) { _count = count; } - + void is_silent(bool yn); + void silence (framecnt_t nframes, framecnt_t offset); + bool is_mirror() const { return _is_mirror; } + + void set_count(const ChanCount& count) { assert(count <= _available); _count = count; } + size_t buffer_capacity(DataType type) const; - Buffer& get(DataType type, size_t i) - { - assert(i <= _count.get(type)); - return *_buffers[type.to_index()][i]; - } + Buffer& get(DataType type, size_t i); + const Buffer& get(DataType type, size_t i) const; - AudioBuffer& get_audio(size_t i) - { + AudioBuffer& get_audio(size_t i) { return (AudioBuffer&)get(DataType::AUDIO, i); } - - MidiBuffer& get_midi(size_t i) - { - return (MidiBuffer&)get(DataType::MIDI, i); + const AudioBuffer& get_audio(size_t i) const { + return (const AudioBuffer&)get(DataType::AUDIO, i); } - void read_from(BufferSet& in, jack_nframes_t nframes, jack_nframes_t offset=0) - { - throw; // FIXME: implement this with spiffy DataType iterator etc. + MidiBuffer& get_midi(size_t i) { + return (MidiBuffer&)get(DataType::MIDI, i); + } + const MidiBuffer& get_midi(size_t i) const { + return (const MidiBuffer&)get(DataType::MIDI, i); } - // ITERATORS - - // FIXME: this is a filthy copy-and-paste mess - // FIXME: litter these with assertions - - class audio_iterator { - public: +#ifdef LV2_SUPPORT + /** Get a MIDI buffer translated into an LV2 MIDI buffer for use with plugins. + * The index here corresponds directly to MIDI buffer numbers (i.e. the index + * passed to get_midi), translation back and forth will happen as needed */ + LV2EventBuffer& get_lv2_midi(bool input, size_t i); - AudioBuffer& operator*() { return _set.get_audio(_index); } - AudioBuffer* operator->() { return &_set.get_audio(_index); } - audio_iterator& operator++() { ++_index; return *this; } // yes, prefix only - bool operator==(const audio_iterator& other) { return (_index == other._index); } - bool operator!=(const audio_iterator& other) { return (_index != other._index); } + /** Flush modified LV2 event output buffers back to Ardour buffers */ + void flush_lv2_midi(bool input, size_t i); +#endif - private: - friend class BufferSet; +#if defined VST_SUPPORT || defined LXVST_SUPPORT + VstEvents* get_vst_midi (size_t); +#endif - audio_iterator(BufferSet& list, size_t index) : _set(list), _index(index) {} + void read_from(const BufferSet& in, framecnt_t nframes); + void read_from(const BufferSet& in, framecnt_t nframes, DataType); + void merge_from(const BufferSet& in, framecnt_t nframes); - BufferSet& _set; - size_t _index; - }; - - audio_iterator audio_begin() { return audio_iterator(*this, 0); } - audio_iterator audio_end() { return audio_iterator(*this, _count.get(DataType::AUDIO)); } - - class iterator { + template + class iterator_base { public: - - Buffer& operator*() { return _set.get(_type, _index); } - Buffer* operator->() { return &_set.get(_type, _index); } - iterator& operator++() { ++_index; return *this; } // yes, prefix only - bool operator==(const iterator& other) { return (_index == other._index); } - bool operator!=(const iterator& other) { return (_index != other._index); } + B& operator*() { return (B&)_set.get(_type, _index); } + B* operator->() { return &(B&)_set.get(_type, _index); } + iterator_base& operator++() { ++_index; return *this; } // yes, prefix only + bool operator==(const iterator_base& other) { return (_index == other._index); } + bool operator!=(const iterator_base& other) { return (_index != other._index); } + iterator_base operator=(const iterator_base& other) { + _set = other._set; _type = other._type; _index = other._index; return *this; + } private: friend class BufferSet; - iterator(BufferSet& list, DataType type, size_t index) + iterator_base(BS& list, DataType type, size_t index) : _set(list), _type(type), _index(index) {} - BufferSet& _set; - DataType _type; - size_t _index; + BS& _set; + DataType _type; + size_t _index; }; + typedef iterator_base iterator; iterator begin(DataType type) { return iterator(*this, type, 0); } iterator end(DataType type) { return iterator(*this, type, _count.get(type)); } - + typedef iterator_base const_iterator; + const_iterator begin(DataType type) const { return const_iterator(*this, type, 0); } + const_iterator end(DataType type) const { return const_iterator(*this, type, _count.get(type)); } + + typedef iterator_base audio_iterator; + audio_iterator audio_begin() { return audio_iterator(*this, DataType::AUDIO, 0); } + audio_iterator audio_end() { return audio_iterator(*this, DataType::AUDIO, _count.n_audio()); } + + typedef iterator_base midi_iterator; + midi_iterator midi_begin() { return midi_iterator(*this, DataType::MIDI, 0); } + midi_iterator midi_end() { return midi_iterator(*this, DataType::MIDI, _count.n_midi()); } + private: typedef std::vector BufferVec; - /// Vector of vectors, indexed by DataType::to_index() + /// Vector of vectors, indexed by DataType std::vector _buffers; +#ifdef LV2_SUPPORT + /// LV2 MIDI buffers (for conversion to/from MIDI buffers) + typedef std::vector< std::pair > LV2Buffers; + LV2Buffers _lv2_buffers; +#endif + +#if defined VST_SUPPORT || defined LXVST_SUPPORT + class VSTBuffer { + public: + VSTBuffer (size_t); + ~VSTBuffer (); + + void clear (); + void push_back (Evoral::MIDIEvent const &); + VstEvents* events () const { + return _events; + } + + private: + /* prevent copy construction */ + VSTBuffer (VSTBuffer const &); + + VstEvents* _events; /// the parent VSTEvents struct + VstMidiEvent* _midi_events; ///< storage area for VSTMidiEvents + size_t _capacity; + }; + + typedef std::vector VSTBuffers; + VSTBuffers _vst_buffers; +#endif + /// Use counts (there may be more actual buffers than this) ChanCount _count; /// Available counts (number of buffers actually allocated) ChanCount _available; - /// Whether we (don't) 'own' the contained buffers (are a mirror of a PortSet) + /// False if we 'own' the contained buffers, if true we mirror a PortSet) bool _is_mirror; };