fix up and re-enable MTC transmission

git-svn-id: svn://localhost/ardour2/branches/3.0@3158 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2008-03-19 18:10:51 +00:00
parent d9faaed2c1
commit 4808f7fe8b
4 changed files with 15 additions and 16 deletions

View file

@ -335,7 +335,9 @@ Session::process_with_events (nframes_t nframes)
return;
}
send_midi_time_code_for_cycle(nframes);
if (!_exporting) {
send_midi_time_code_for_cycle(nframes);
}
if (actively_recording()) {
stop_limit = max_frames;
@ -754,8 +756,6 @@ Session::process_without_events (nframes_t nframes)
if (!follow_slave (nframes, 0)) {
return;
}
send_midi_time_code_for_cycle(nframes);
}
if (_transport_speed == 0) {
@ -763,6 +763,10 @@ Session::process_without_events (nframes_t nframes)
return;
}
if (!_exporting) {
send_midi_time_code_for_cycle(nframes);
}
if (actively_recording()) {
stop_limit = max_frames;
} else {