From 7e68cd8dbef520541a5c8276d023bf71b64a0252 Mon Sep 17 00:00:00 2001 From: Emmanuel Milou <emmanuel.milou@savoirfairelinux.com> Date: Thu, 16 Oct 2008 10:28:30 -0400 Subject: [PATCH] alsa modif, increase the hardware buffer size, fragment size to 25ms --- src/audio/alsalayer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/audio/alsalayer.cpp b/src/audio/alsalayer.cpp index e1ba97a377..72673ec566 100644 --- a/src/audio/alsalayer.cpp +++ b/src/audio/alsalayer.cpp @@ -296,8 +296,8 @@ AlsaLayer::open_device(std::string pcm_p, std::string pcm_c, int flag) snd_pcm_uframes_t period_size_out = getFrameSize() * getSampleRate() / 1000 * 2;//1024 ; snd_pcm_uframes_t buffer_size_out = period_size_out * 4 ; - unsigned int buffer_time = 80000; //80ms - unsigned int period_time = buffer_time / 4 ; //20ms + unsigned int buffer_time = 100000; //100ms + unsigned int period_time = buffer_time / 4 ; //25ms if(flag == SFL_PCM_BOTH || flag == SFL_PCM_CAPTURE) { -- GitLab