mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
Fix Region Export alignment
Session::start_audio_export correctly sets preroll offset depending on export-mode. A later locate must not change it.
This commit is contained in:
parent
d5cc5b0586
commit
b6428b421f
1 changed files with 1 additions and 1 deletions
|
|
@ -203,7 +203,7 @@ Session::locate (samplepos_t target_sample, bool for_loop_end, bool force, bool
|
|||
// thread(s?) can restart.
|
||||
_seek_counter.fetch_add (1);
|
||||
_last_roll_or_reversal_location = target_sample;
|
||||
if (!for_loop_end) {
|
||||
if (!for_loop_end && !_exporting) {
|
||||
_remaining_latency_preroll = worst_latency_preroll_buffer_size_ceil ();
|
||||
}
|
||||
timecode_time(_transport_sample, transmitting_timecode_time); // XXX here?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue