Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 9746
b: refs/heads/master
c: d31cbbf
h: refs/heads/master
v: v3
  • Loading branch information
Clemens Ladisch authored and Jaroslav Kysela committed Oct 7, 2005
1 parent 7997b4e commit 563b265
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 31ab9523ed3773d5de7c07b3b6c4c00ddb06045e
refs/heads/master: d31cbbfd80a84696847913b7486a998481038663
8 changes: 4 additions & 4 deletions trunk/sound/usb/usbaudio.c
Original file line number Diff line number Diff line change
Expand Up @@ -1444,9 +1444,9 @@ static snd_pcm_hardware_t snd_usb_playback =
SNDRV_PCM_INFO_BATCH |
SNDRV_PCM_INFO_INTERLEAVED |
SNDRV_PCM_INFO_BLOCK_TRANSFER,
.buffer_bytes_max = (256*1024),
.buffer_bytes_max = 1024 * 1024,
.period_bytes_min = 64,
.period_bytes_max = (128*1024),
.period_bytes_max = 512 * 1024,
.periods_min = 2,
.periods_max = 1024,
};
Expand All @@ -1458,9 +1458,9 @@ static snd_pcm_hardware_t snd_usb_capture =
SNDRV_PCM_INFO_BATCH |
SNDRV_PCM_INFO_INTERLEAVED |
SNDRV_PCM_INFO_BLOCK_TRANSFER,
.buffer_bytes_max = (256*1024),
.buffer_bytes_max = 1024 * 1024,
.period_bytes_min = 64,
.period_bytes_max = (128*1024),
.period_bytes_max = 512 * 1024,
.periods_min = 2,
.periods_max = 1024,
};
Expand Down

0 comments on commit 563b265

Please sign in to comment.