mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-23 15:16:25 +01:00
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:
parent
d9faaed2c1
commit
4808f7fe8b
4 changed files with 15 additions and 16 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue