From 3cd7c3e206ab1d78b0ff7d0aad0aa2c0c642225b Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 5 May 2021 17:30:48 +0200 Subject: [PATCH] Reduce default max transport speed Since Ardour 6, a transport speed of 200% will also double DSP load. Under the hood Ardour rolls twice the distance and the output is downsampled. Vari-speed > +/-200% will likely cause dropouts with many sessions on most systems, users should explicitly select it. --- libs/ardour/ardour/rc_configuration_vars.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/ardour/rc_configuration_vars.h b/libs/ardour/ardour/rc_configuration_vars.h index 9e9178b4a9..68591b320a 100644 --- a/libs/ardour/ardour/rc_configuration_vars.h +++ b/libs/ardour/ardour/rc_configuration_vars.h @@ -103,7 +103,7 @@ CONFIG_VARIABLE (float, midi_track_buffer_seconds, "midi-track-buffer-seconds", CONFIG_VARIABLE (uint32_t, disk_choice_space_threshold, "disk-choice-space-threshold", 57600000) CONFIG_VARIABLE (bool, auto_analyse_audio, "auto-analyse-audio", false) CONFIG_VARIABLE (float, transient_sensitivity, "transient-sensitivity", 50) -CONFIG_VARIABLE (float, max_transport_speed, "max-transport-speed", 8.0) +CONFIG_VARIABLE (float, max_transport_speed, "max-transport-speed", 2.0) /* OSC */