alsa: Change default buffer/period size

Increase buffer size but do not rely on ALSA picking up default period
size.

Signed-off-by: malc <av1474@comtv.ru>
This commit is contained in:
malc 2009-10-02 03:19:30 +04:00
parent 301901b56c
commit de2ca4fbb4
1 changed files with 2 additions and 1 deletions

View File

@ -74,7 +74,8 @@ static struct {
int period_size_out_overridden;
int verbose;
} conf = {
.buffer_size_out = 1024,
.buffer_size_out = 4096,
.period_size_out = 1024,
.pcm_name_out = "default",
.pcm_name_in = "default",
};