From 64cd82ceb221aa292ea1595add39d6e6bbdb4753 Mon Sep 17 00:00:00 2001 From: Charlton Head Date: Sat, 24 Jun 2017 12:42:53 -0500 Subject: [PATCH] TinyALSA change pcm_config --- audio/drivers/tinyalsa.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/audio/drivers/tinyalsa.c b/audio/drivers/tinyalsa.c index 5abab1fdea..074d91a97f 100644 --- a/audio/drivers/tinyalsa.c +++ b/audio/drivers/tinyalsa.c @@ -53,9 +53,9 @@ tinyalsa_init(const char *device, unsigned rate, config.rate = rate; config.format = PCM_FORMAT_S16_LE; config.channels = 2; - config.period_size = 768; - config.period_count = 4; - config.start_threshold = 2048; + config.period_size = 1024; + config.period_count = 2; + config.start_threshold = 1024; config.silence_threshold = 1024 * 2; config.stop_threshold = 1024 * 2;