mirror of https://github.com/xemu-project/xemu.git
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:
parent
301901b56c
commit
de2ca4fbb4
|
@ -74,7 +74,8 @@ static struct {
|
||||||
int period_size_out_overridden;
|
int period_size_out_overridden;
|
||||||
int verbose;
|
int verbose;
|
||||||
} conf = {
|
} conf = {
|
||||||
.buffer_size_out = 1024,
|
.buffer_size_out = 4096,
|
||||||
|
.period_size_out = 1024,
|
||||||
.pcm_name_out = "default",
|
.pcm_name_out = "default",
|
||||||
.pcm_name_in = "default",
|
.pcm_name_in = "default",
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue