From bf1064b587321b1af02e444201215141bd049c97 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Mon, 24 Jan 2011 22:07:46 +0100 Subject: pulseaudio: tweak config Zap unused divisor field. Raise the buffer size default. Signed-off-by: Gerd Hoffmann Signed-off-by: malc --- audio/paaudio.c | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'audio') diff --git a/audio/paaudio.c b/audio/paaudio.c index 75e3ea0a8c..fb4510e426 100644 --- a/audio/paaudio.c +++ b/audio/paaudio.c @@ -33,13 +33,11 @@ typedef struct { static struct { int samples; - int divisor; char *server; char *sink; char *source; } conf = { - .samples = 1024, - .divisor = 2, + .samples = 4096, }; static void GCC_FMT_ATTR (2, 3) qpa_logerr (int err, const char *fmt, ...) @@ -477,12 +475,6 @@ struct audio_option qpa_options[] = { .valp = &conf.samples, .descr = "buffer size in samples" }, - { - .name = "DIVISOR", - .tag = AUD_OPT_INT, - .valp = &conf.divisor, - .descr = "threshold divisor" - }, { .name = "SERVER", .tag = AUD_OPT_STR, -- cgit v1.2.1