summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2010-10-27 12:21:04 +0200
committerGerd Hoffmann <kraxel@redhat.com>2010-10-29 14:32:58 +0200
commitc21251936d59153c72b8c9dde8604f9199c578d6 (patch)
treed488e8a05241ca40c328c73c7b08e1d3241ed6a9
parent882ed62a0a33bc2af0802578eb4df383e8306981 (diff)
pulseaudio: tweak configpulse
Zap unused divisor field. Raise the buffer size default.
-rw-r--r--audio/paaudio.c10
1 files changed, 1 insertions, 9 deletions
diff --git a/audio/paaudio.c b/audio/paaudio.c
index 61af0c5af1..34bde23726 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, ...)
@@ -478,12 +476,6 @@ struct audio_option qpa_options[] = {
.descr = "buffer size in samples"
},
{
- .name = "DIVISOR",
- .tag = AUD_OPT_INT,
- .valp = &conf.divisor,
- .descr = "threshold divisor"
- },
- {
.name = "SERVER",
.tag = AUD_OPT_STR,
.valp = &conf.server,