Don't send midi clock during export, for now, to avoid assertion failure when the transmission code tries to send MIDI outside the process callback.
git-svn-id: svn://localhost/ardour2/branches/3.0@5612 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
@@ -56,6 +56,11 @@ void MidiClockTicker::update_midi_clock_port()
|
||||
|
||||
void MidiClockTicker::transport_state_changed()
|
||||
{
|
||||
if (_session->exporting()) {
|
||||
/* no midi clock during export, for now */
|
||||
return;
|
||||
}
|
||||
|
||||
float speed = _session->transport_speed();
|
||||
nframes_t position = _session->transport_frame();
|
||||
#ifdef DEBUG_MIDI_CLOCK
|
||||
|
||||
Reference in New Issue
Block a user