From 1387e756def903c7987941bab6b50c1f25ab7141 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 25 Aug 2015 03:48:54 +0200 Subject: fix linked midi-regions on different tracks #6541 A somewhat hacky solution to address missing note-off events when a linked midi-region is used on separate tracks at the same time. see the source-code comment for further info. --- libs/ardour/midi_source.cc | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) (limited to 'libs/ardour/midi_source.cc') diff --git a/libs/ardour/midi_source.cc b/libs/ardour/midi_source.cc index ab972fabd8..0c18681dd4 100644 --- a/libs/ardour/midi_source.cc +++ b/libs/ardour/midi_source.cc @@ -205,6 +205,7 @@ MidiSource::midi_read (const Lock& lm, Evoral::Sequence::const_iterator& i = _model_iter; const bool linear_read = _last_read_end != 0 && start == _last_read_end; if (!linear_read || !_model_iter_valid) { +#if 0 // Cached iterator is invalid, search for the first event past start i = _model->begin(converter.from(start), false, filtered, linear_read ? &_model->active_notes() : NULL); @@ -212,6 +213,43 @@ MidiSource::midi_read (const Lock& lm, if (!linear_read) { _model->active_notes().clear(); } +#else + /* hot-fix http://tracker.ardour.org/view.php?id=6541 + * "parallel playback of linked midi regions -> no note-offs" + * + * A midi source can be used by multiple tracks simultaneously, + * in which case midi_read() can called from different tracks for + * overlapping time-ranges. + * + * However there is only a single iterator for a given midi-source. + * this results in every midi_read() performing a seek. + * + * if seeking is performed with + * _model->begin(converter.from(start),...) + * the model is used for seeking. That method seeks to the first + * *note-on* event after 'start'. + * + * _model->begin(conveter.from( ) ,..) eventually calls + * Sequence