13
0

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
This commit is contained in:
Robin Gareus 2017-09-23 00:11:21 +02:00
parent c681e9d4d7
commit 25f45022db

View File

@ -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();