diff options
author | David Henningsson <david.henningsson@canonical.com> | 2013-11-05 04:41:08 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2013-11-05 07:46:48 +0100 |
commit | 504333df8ba5fc310260285a22ab5d7cf3208795 (patch) | |
tree | ca3b1e699342489ad5f27a8e1430e6e74c8c0dbc /sound/usb | |
parent | e3e35f750fff74e701c8913fd7dd714e37a848cd (diff) | |
download | linux-504333df8ba5fc310260285a22ab5d7cf3208795.tar.gz linux-504333df8ba5fc310260285a22ab5d7cf3208795.tar.bz2 linux-504333df8ba5fc310260285a22ab5d7cf3208795.zip |
ALSA: usb - Don't trust the channel config if the channel count changed
In case the channel count of the input terminal is not the same as
the channel count of the streaming descriptor, the channel config of
the input terminal can not be trusted. Instead fall back to a default
(guessed) channel map.
This was found on a Logitech USB Headset.
Signed-off-by: David Henningsson <david.henningsson@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/stream.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sound/usb/stream.c b/sound/usb/stream.c index badd1d6d175d..d737d0e6e558 100644 --- a/sound/usb/stream.c +++ b/sound/usb/stream.c @@ -662,7 +662,6 @@ int snd_usb_parse_audio_interface(struct snd_usb_audio *chip, int iface_no) * (fp->maxpacksize & 0x7ff); fp->attributes = parse_uac_endpoint_attributes(chip, alts, protocol, iface_no); fp->clock = clock; - fp->chmap = convert_chmap(num_channels, chconfig, protocol); /* some quirks for attributes here */ @@ -698,12 +697,16 @@ int snd_usb_parse_audio_interface(struct snd_usb_audio *chip, int iface_no) /* ok, let's parse further... */ if (snd_usb_parse_audio_format(chip, fp, format, fmt, stream) < 0) { kfree(fp->rate_table); - kfree(fp->chmap); kfree(fp); fp = NULL; continue; } + /* Create chmap */ + if (fp->channels != num_channels) + chconfig = 0; + fp->chmap = convert_chmap(fp->channels, chconfig, protocol); + snd_printdd(KERN_INFO "%d:%u:%d: add audio endpoint %#x\n", dev->devnum, iface_no, altno, fp->endpoint); err = snd_usb_add_audio_stream(chip, stream, fp); if (err < 0) { |