From 862bdcd0daffc427327f0f43e8ae944cf9f97697 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Mon, 7 Sep 2015 00:05:59 +0200 Subject: [PATCH] (Gekko) Set audio output rate to 32KHz --- config.def.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/config.def.h b/config.def.h index 74572dce40..a2cf0e87c7 100644 --- a/config.def.h +++ b/config.def.h @@ -599,7 +599,11 @@ static const bool allow_rotate = true; static const bool audio_enable = true; /* Output samplerate. */ +#ifdef GEKKO +static const unsigned out_rate = 32000; +#else static const unsigned out_rate = 48000; +#endif /* Audio device (e.g. hw:0,0 or /dev/audio). If NULL, will use defaults. */ static const char *audio_device = NULL;