Commit d31cbbfd authored by Clemens Ladisch's avatar Clemens Ladisch Committed by Jaroslav Kysela

[ALSA] usb-audio: increase max buffer size

USB generic driver
Increase the maximum PCM buffer size to 1 MB.  The USB driver doesn't
have any inherent buffer size limit, and big multichannel interfaces
may benefit from this.
Signed-off-by: default avatarClemens Ladisch <clemens@ladisch.de>
parent 31ab9523
...@@ -1444,9 +1444,9 @@ static snd_pcm_hardware_t snd_usb_playback = ...@@ -1444,9 +1444,9 @@ static snd_pcm_hardware_t snd_usb_playback =
SNDRV_PCM_INFO_BATCH | SNDRV_PCM_INFO_BATCH |
SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_INTERLEAVED |
SNDRV_PCM_INFO_BLOCK_TRANSFER, SNDRV_PCM_INFO_BLOCK_TRANSFER,
.buffer_bytes_max = (256*1024), .buffer_bytes_max = 1024 * 1024,
.period_bytes_min = 64, .period_bytes_min = 64,
.period_bytes_max = (128*1024), .period_bytes_max = 512 * 1024,
.periods_min = 2, .periods_min = 2,
.periods_max = 1024, .periods_max = 1024,
}; };
...@@ -1458,9 +1458,9 @@ static snd_pcm_hardware_t snd_usb_capture = ...@@ -1458,9 +1458,9 @@ static snd_pcm_hardware_t snd_usb_capture =
SNDRV_PCM_INFO_BATCH | SNDRV_PCM_INFO_BATCH |
SNDRV_PCM_INFO_INTERLEAVED | SNDRV_PCM_INFO_INTERLEAVED |
SNDRV_PCM_INFO_BLOCK_TRANSFER, SNDRV_PCM_INFO_BLOCK_TRANSFER,
.buffer_bytes_max = (256*1024), .buffer_bytes_max = 1024 * 1024,
.period_bytes_min = 64, .period_bytes_min = 64,
.period_bytes_max = (128*1024), .period_bytes_max = 512 * 1024,
.periods_min = 2, .periods_min = 2,
.periods_max = 1024, .periods_max = 1024,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment