Skip to content

Commit

Permalink
Revert back to smaller alsa buffer
Browse files Browse the repository at this point in the history
  • Loading branch information
popcornmix committed Apr 2, 2013
1 parent e6ef7f6 commit 4642dff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sound/arm/bcm2835-pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ static struct snd_pcm_hardware snd_bcm2835_playback_hw = {
.rate_max = 48000,
.channels_min = 1,
.channels_max = 2,
.buffer_bytes_max = 32 * 1024, /* Needs to be less than audioplay buffer size */
.period_bytes_min = 4 * 1024,
.period_bytes_max = 32 * 1024,
.buffer_bytes_max = 128 * 1024,
.period_bytes_min = 1 * 1024,
.period_bytes_max = 128 * 1024,
.periods_min = 1,
.periods_max = 32,
.periods_max = 128,
};

static void snd_bcm2835_playback_free(struct snd_pcm_runtime *runtime)
Expand Down

0 comments on commit 4642dff

Please sign in to comment.