do not change Session::_transport_frame is a locate is pending
This commit is contained in:
parent
6fb212a6f6
commit
871428576c
@ -428,6 +428,9 @@ Session::process_with_events (pframes_t nframes)
|
||||
}
|
||||
}
|
||||
|
||||
if (locate_pending()) {
|
||||
frames_moved = 0;
|
||||
} else {
|
||||
if (_transport_speed == 1.0) {
|
||||
frames_moved = (framecnt_t) nframes;
|
||||
} else {
|
||||
@ -435,6 +438,7 @@ Session::process_with_events (pframes_t nframes)
|
||||
interpolation.set_speed (_transport_speed);
|
||||
frames_moved = (framecnt_t) interpolation.interpolate (0, nframes, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
end_frame = _transport_frame + frames_moved;
|
||||
|
||||
@ -482,7 +486,11 @@ Session::process_with_events (pframes_t nframes)
|
||||
while (nframes) {
|
||||
|
||||
this_nframes = nframes; /* real (jack) time relative */
|
||||
if (locate_pending()) {
|
||||
frames_moved = 0;
|
||||
} else {
|
||||
frames_moved = (framecnt_t) floor (_transport_speed * nframes); /* transport relative */
|
||||
}
|
||||
|
||||
/* running an event, position transport precisely to its time */
|
||||
if (this_event && this_event->action_frame <= end_frame && this_event->action_frame >= _transport_frame) {
|
||||
@ -508,7 +516,7 @@ Session::process_with_events (pframes_t nframes)
|
||||
|
||||
if (frames_moved < 0) {
|
||||
decrement_transport_position (-frames_moved);
|
||||
} else {
|
||||
} else if (frames_moved) {
|
||||
increment_transport_position (frames_moved);
|
||||
}
|
||||
|
||||
@ -865,11 +873,17 @@ Session::follow_slave_silently (pframes_t nframes, float slave_speed)
|
||||
_butler->summon ();
|
||||
}
|
||||
|
||||
int32_t frames_moved = (int32_t) floor (_transport_speed * nframes);
|
||||
int32_t frames_moved;
|
||||
|
||||
if (locate_pending()) {
|
||||
frames_moved = 0;
|
||||
} else {
|
||||
frames_moved = (int32_t) floor (_transport_speed * nframes);
|
||||
}
|
||||
|
||||
if (frames_moved < 0) {
|
||||
decrement_transport_position (-frames_moved);
|
||||
} else {
|
||||
} else if (frames_moved) {
|
||||
increment_transport_position (frames_moved);
|
||||
}
|
||||
|
||||
@ -901,6 +915,9 @@ Session::process_without_events (pframes_t nframes)
|
||||
return;
|
||||
}
|
||||
|
||||
if (locate_pending()) {
|
||||
frames_moved = 0;
|
||||
} else {
|
||||
if (_transport_speed == 1.0) {
|
||||
frames_moved = (framecnt_t) nframes;
|
||||
} else {
|
||||
@ -908,6 +925,7 @@ Session::process_without_events (pframes_t nframes)
|
||||
interpolation.set_speed (_transport_speed);
|
||||
frames_moved = (framecnt_t) interpolation.interpolate (0, nframes, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
if (!_exporting && !timecode_transmission_suspended()) {
|
||||
send_midi_time_code_for_cycle (_transport_frame, _transport_frame + frames_moved, nframes);
|
||||
@ -937,7 +955,7 @@ Session::process_without_events (pframes_t nframes)
|
||||
|
||||
if (frames_moved < 0) {
|
||||
decrement_transport_position (-frames_moved);
|
||||
} else {
|
||||
} else if (frames_moved) {
|
||||
increment_transport_position (frames_moved);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user