From 9b617bb7b28ca94ce14387d52a3a59b4cd704dd7 Mon Sep 17 00:00:00 2001 From: habbbe Date: Wed, 26 Apr 2017 09:32:37 +0200 Subject: [PATCH] Fixed desired buffer length for Pulseaudio --- audio_pulse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio_pulse.c b/audio_pulse.c index 282263cb..7d117980 100644 --- a/audio_pulse.c +++ b/audio_pulse.c @@ -60,7 +60,7 @@ static int init(int argc, char **argv) { pulse_options.service_name = config.service_name; - config.audio_backend_buffer_desired_length = 44100; // one second. + config.audio_backend_buffer_desired_length = 1; // one second. config.audio_backend_latency_offset = 0; optind = 1; // optind=0 is equivalent to optind=1 plus special behaviour -- 2.47.2