diff options
Diffstat (limited to 'sound/usb/usbaudio.c')
-rw-r--r-- | sound/usb/usbaudio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sound/usb/usbaudio.c b/sound/usb/usbaudio.c index 20b656e9f90d..ea3eaa53d637 100644 --- a/sound/usb/usbaudio.c +++ b/sound/usb/usbaudio.c | |||
@@ -2581,6 +2581,9 @@ static int parse_audio_format_rates_v1(struct snd_usb_audio *chip, struct audiof | |||
2581 | chip->usb_id == USB_ID(0x0d8c, 0x0102)) && | 2581 | chip->usb_id == USB_ID(0x0d8c, 0x0102)) && |
2582 | fp->altsetting == 5 && fp->maxpacksize == 392) | 2582 | fp->altsetting == 5 && fp->maxpacksize == 392) |
2583 | rate = 96000; | 2583 | rate = 96000; |
2584 | /* Creative VF0470 Live Cam reports 16 kHz instead of 8kHz */ | ||
2585 | if (rate == 16000 && chip->usb_id == USB_ID(0x041e, 0x4068)) | ||
2586 | rate = 8000; | ||
2584 | fp->rate_table[fp->nr_rates] = rate; | 2587 | fp->rate_table[fp->nr_rates] = rate; |
2585 | if (!fp->rate_min || rate < fp->rate_min) | 2588 | if (!fp->rate_min || rate < fp->rate_min) |
2586 | fp->rate_min = rate; | 2589 | fp->rate_min = rate; |