Skip to content

Commit

Permalink
Increase the minimum alsa buffer size as we get underrun with some ap…
Browse files Browse the repository at this point in the history
…ps (e.g. espeak)
  • Loading branch information
popcornmix committed Mar 3, 2013
1 parent 51c2c3f commit a9b0e8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/arm/bcm2835-pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ static struct snd_pcm_hardware snd_bcm2835_playback_hw = {
.channels_min = 1,
.channels_max = 2,
.buffer_bytes_max = 32 * 1024, /* Needs to be less than audioplay buffer size */
.period_bytes_min = 1 * 1024,
.period_bytes_min = 4 * 1024,
.period_bytes_max = 32 * 1024,
.periods_min = 1,
.periods_max = 32,
Expand Down

0 comments on commit a9b0e8b

Please sign in to comment.