From 5a8b69555fd6d26b75fb48d554309254d9615bea Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 7 Mar 2023 16:38:58 +0100 Subject: [PATCH] Fix metronome capture alignment This undoes edd68d86825, "ExistingMaterial" worked IFF the click playback was exactly 1 cycle delayed and the disk-writer _playback_offset was set to 1 cycle. Now that audio buffers are flushed (see prev commit), the click I/O's output is directly available and CaptureTime is the correct alignment (as it always was). --- libs/ardour/track.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libs/ardour/track.cc b/libs/ardour/track.cc index 93d2f6b6c1..821ecbf573 100644 --- a/libs/ardour/track.cc +++ b/libs/ardour/track.cc @@ -822,11 +822,6 @@ Track::set_align_choice_from_io () #endif - /* metronome aligns to ExistingMaterial */ - if (_input->connected_to (_session.click_io ())) { - have_physical = true; - } - if (have_physical) { _disk_writer->set_align_style (ExistingMaterial); } else {