diff options
author | Trent Piepho <xyzzy@speakeasy.org> | 2007-08-18 17:01:40 -0700 |
---|---|---|
committer | Trent Piepho <xyzzy@speakeasy.org> | 2007-08-18 17:01:40 -0700 |
commit | 5c48591870f92de1eb2ccf103e4cb169e6c180f2 (patch) | |
tree | 36f92fdec1b7de9c4d245efe0cde775068b1ec3e /linux/drivers/media | |
parent | 96022455a76d238b618f797555c6b16f7d0e9ec7 (diff) | |
download | mediapointer-dvb-s2-5c48591870f92de1eb2ccf103e4cb169e6c180f2.tar.gz mediapointer-dvb-s2-5c48591870f92de1eb2ccf103e4cb169e6c180f2.tar.bz2 |
cx88-alsa: Hardware doesn't support mono audio
From: Trent Piepho <xyzzy@speakeasy.org>
channels_min should be 2, not 1. The hardware only supports stereo.
Signed-off-by: Trent Piepho <xyzzy@speakeasy.org>
Diffstat (limited to 'linux/drivers/media')
-rw-r--r-- | linux/drivers/media/video/cx88/cx88-alsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/video/cx88/cx88-alsa.c b/linux/drivers/media/video/cx88/cx88-alsa.c index 9cec78a0f..b440c0e72 100644 --- a/linux/drivers/media/video/cx88/cx88-alsa.c +++ b/linux/drivers/media/video/cx88/cx88-alsa.c @@ -352,7 +352,7 @@ static struct snd_pcm_hardware snd_cx88_digital_hw = { .rates = SNDRV_PCM_RATE_48000, .rate_min = 48000, .rate_max = 48000, - .channels_min = 1, + .channels_min = 2, .channels_max = 2, .buffer_bytes_max = (2*2048), .period_bytes_min = 2048, |