From: Mike Brady Date: Wed, 9 Jan 2019 10:10:04 +0000 (+0000) Subject: backend silence threshold should be 0.060 not 0.6! X-Git-Tag: 3.3RC0~66^2~73 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a9d46afedb4539b2c273052cf2046b9236746df;p=thirdparty%2Fshairport-sync.git backend silence threshold should be 0.060 not 0.6! --- diff --git a/audio_alsa.c b/audio_alsa.c index b7b3e7e1..3411c160 100644 --- a/audio_alsa.c +++ b/audio_alsa.c @@ -633,7 +633,7 @@ static int init(int argc, char **argv) { config.audio_backend_buffer_interpolation_threshold_in_seconds = 0.175; // below this, basic interpolation will be used to save time. config.alsa_maximum_stall_time = 0.200; // 200 milliseconds -- if it takes longer, it's a problem - config.audio_backend_silence_threshold = 0.60; //start sending silent frames if the delay goes below this time + config.audio_backend_silence_threshold = 0.060; //start sending silent frames if the delay goes below this time config.audio_backend_silence_scan_interval = 0.004; //check silence threshold this often stall_monitor_error_threshold =