From 5558b3cf06b98060438d1e68c8d5d2f4a9c2f8f6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 26 Dec 2011 17:01:31 +0000 Subject: a grab bag of changes correcting and improving the way MIDI note on/off tracking is done. may/should fix a number of problem with spurious note-offs under a variety of circumstances git-svn-id: svn://localhost/ardour2/branches/3.0@11074 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/midi_state_tracker.cc | 35 ++++++++++++++++++++++++++--------- 1 file changed, 26 insertions(+), 9 deletions(-) (limited to 'libs/ardour/midi_state_tracker.cc') diff --git a/libs/ardour/midi_state_tracker.cc b/libs/ardour/midi_state_tracker.cc index d261115ac1..7537ca04d1 100644 --- a/libs/ardour/midi_state_tracker.cc +++ b/libs/ardour/midi_state_tracker.cc @@ -20,6 +20,7 @@ #include #include "pbd/compose.h" +#include "pbd/stacktrace.h" #include "ardour/debug.h" #include "ardour/event_type_map.h" @@ -57,15 +58,23 @@ MidiStateTracker::track_note_onoffs (const Evoral::MIDIEvent 1) { + cerr << this << " note " << (int) note << '/' << (int) chn << " was already on, now at " << (int) _active_notes[note+128*chn] << endl; + } + + DEBUG_TRACE (PBD::DEBUG::MidiTrackers, string_compose ("%1 ON %2/%3 voices %5 total on %4\n", + this, (int) note, (int) chn, _on, + (int) _active_notes[note+128 * chn])); } void MidiStateTracker::remove (uint8_t note, uint8_t chn) -{ +{ switch (_active_notes[note + 128 * chn]) { case 0: break; @@ -75,11 +84,12 @@ MidiStateTracker::remove (uint8_t note, uint8_t chn) break; default: --_active_notes [note + 128 * chn]; - break; + break; } - DEBUG_TRACE (PBD::DEBUG::MidiTrackers, string_compose ("MST @ %1 OFF %2/%3 total on %4\n", - this, (int) note, (int) chn, _on)); + DEBUG_TRACE (PBD::DEBUG::MidiTrackers, string_compose ("%1 OFF %2/%3 current voices = %5 total on %4\n", + this, (int) note, (int) chn, _on, + (int) _active_notes[note+128 * chn])); } void @@ -102,9 +112,10 @@ MidiStateTracker::track (const MidiBuffer::iterator &from, const MidiBuffer::ite if (ev.type() == MIDI_CTL_ALL_NOTES_OFF) { cerr << "State tracker sees ALL_NOTES_OFF, silenceing " << sizeof (_active_notes) << endl; memset (_active_notes, 0, sizeof (_active_notes)); + _on = 0; + } else { + track_note_onoffs (ev); } - - track_note_onoffs (ev); } } @@ -123,6 +134,9 @@ MidiStateTracker::resolve_notes (MidiBuffer &dst, framepos_t time) uint8_t buffer[3] = { MIDI_CMD_NOTE_OFF | channel, note, 0 }; Evoral::MIDIEvent noteoff (MIDI_CMD_NOTE_OFF, time, 3, buffer, false); + /* note that we do not care about failure from + push_back() ... should we warn someone ? + */ dst.push_back (noteoff); _active_notes[note + 128 * channel]--; DEBUG_TRACE (PBD::DEBUG::MidiTrackers, string_compose ("%1: MB-resolved note %2/%3 at %4\n", @@ -150,6 +164,9 @@ MidiStateTracker::resolve_notes (Evoral::EventSink &dst, framepos_t buf[0] = MIDI_CMD_NOTE_OFF|channel; buf[1] = note; buf[2] = 0; + /* note that we do not care about failure from + write() ... should we warn someone ? + */ dst.write (time, EventTypeMap::instance().midi_event_type (buf[0]), 3, buf); _active_notes[note + 128 * channel]--; DEBUG_TRACE (PBD::DEBUG::MidiTrackers, string_compose ("%1: EVS-resolved note %2/%3 at %4\n", -- cgit v1.2.3