From 963c104cca701a32d31d22c8276ccef553653de4 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 6 Dec 2023 22:36:53 +0100 Subject: [PATCH] Change default sample-rate to 48kHz 44.1kHz is dead; many soundcards do not support it anymore. --- libs/ardour/ardour/audio_backend.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/ardour/audio_backend.h b/libs/ardour/ardour/audio_backend.h index ab9813312a..72e40f3665 100644 --- a/libs/ardour/ardour/audio_backend.h +++ b/libs/ardour/ardour/audio_backend.h @@ -365,12 +365,12 @@ public: /* Returns the default sample rate that will be shown to the user when * configuration options are first presented. If the derived class * needs or wants to override this, it can. It also MUST override this - * if there is any chance that an SR of 44.1kHz is not in the list + * if there is any chance that an SR of 48kHz is not in the list * returned by available_sample_rates() */ virtual float default_sample_rate () const { - return 44100.0; + return 48000.0; } /** Returns a collection of uint32 identifying buffer sizes that are