(Gekko) Set audio output rate to 32KHz

This commit is contained in:
twinaphex 2015-09-07 00:05:59 +02:00
parent da3de73237
commit 862bdcd0da

View file

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