From 25f45022db58633dd8e2fec6844157b44fe71428 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 23 Sep 2017 00:11:21 +0200 Subject: [PATCH] Fix order of [initial] latency-computation Session::post_playback_latency() sets the actual route latency, so that playback latency notifications need to come after capture- latency (backends follow the same rule: capture first). NB. Session::initialize_latencies() was already using the correct order --- libs/ardour/session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 7de5f53cbf..0d9888df24 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -3582,8 +3582,8 @@ Session::add_routes (RouteList& new_routes, bool input_auto_connect, bool output graph_reordered (); - update_latency (true); update_latency (false); + update_latency (true); set_dirty();