]> git.ipfire.org Git - thirdparty/shairport-sync.git/commitdiff
backend silence threshold should be 0.060 not 0.6!
authorMike Brady <mikebrady@eircom.net>
Wed, 9 Jan 2019 10:10:04 +0000 (10:10 +0000)
committerMike Brady <mikebrady@eircom.net>
Wed, 9 Jan 2019 10:10:04 +0000 (10:10 +0000)
audio_alsa.c

index b7b3e7e125a4f2679ad6874606642006a5b25f27..3411c1605bf7ff1165d3807c9584eab0caf62382 100644 (file)
@@ -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 =