pulse-server: reduce min quantum to 128/48000

some games want 5ms latency and the 256/48000 previous min value was
5.3ms and just a little too high, reduce this because we probably can.
This commit is contained in:
Wim Taymans 2023-03-08 11:10:39 +01:00
parent af91ae67de
commit ddbb54fd6f
3 changed files with 12 additions and 12 deletions

View file

@ -56,12 +56,12 @@
#include "utils.h"
#include "volume.h"
#define DEFAULT_MIN_REQ "256/48000"
#define DEFAULT_MIN_REQ "128/48000"
#define DEFAULT_DEFAULT_REQ "960/48000"
#define DEFAULT_MIN_FRAG "256/48000"
#define DEFAULT_MIN_FRAG "128/48000"
#define DEFAULT_DEFAULT_FRAG "96000/48000"
#define DEFAULT_DEFAULT_TLENGTH "96000/48000"
#define DEFAULT_MIN_QUANTUM "256/48000"
#define DEFAULT_MIN_QUANTUM "128/48000"
#define DEFAULT_FORMAT "F32"
#define DEFAULT_POSITION "[ FL FR ]"
#define DEFAULT_IDLE_TIMEOUT "0"