aboutsummaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorKővágó, Zoltán <dirty.ice.hu@gmail.com>2019-10-13 21:58:03 +0200
committerGerd Hoffmann <kraxel@redhat.com>2019-10-18 08:14:05 +0200
commitb5c7db3eefeba1cb661c86b2e530ea387319db1d (patch)
treed5c724314388f4101e46ca98754684d0b70b7414 /audio
parent2b9cce8c8c37b95290c48c037e51e001985124d1 (diff)
downloadqemu-b5c7db3eefeba1cb661c86b2e530ea387319db1d.zip
qemu-b5c7db3eefeba1cb661c86b2e530ea387319db1d.tar.gz
qemu-b5c7db3eefeba1cb661c86b2e530ea387319db1d.tar.bz2
audio: basic support for multichannel audio
Which currently only means removing some checks. Old code won't require more than two channels, but new code will need it. Signed-off-by: Kővágó, Zoltán <DirtY.iCE.hu@gmail.com> Message-id: 7e53be1f97e939ed3bb729ef39e76b775643118a.1570996490.git.DirtY.iCE.hu@gmail.com Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'audio')
-rw-r--r--audio/alsaaudio.c7
-rw-r--r--audio/audio.c2
2 files changed, 1 insertions, 8 deletions
diff --git a/audio/alsaaudio.c b/audio/alsaaudio.c
index eddf013..f37ce1c 100644
--- a/audio/alsaaudio.c
+++ b/audio/alsaaudio.c
@@ -493,13 +493,6 @@ static int alsa_open(bool in, struct alsa_params_req *req,
goto err;
}
- if (nchannels != 1 && nchannels != 2) {
- alsa_logerr2 (err, typ,
- "Can not handle obtained number of channels %d\n",
- nchannels);
- goto err;
- }
-
if (apdo->buffer_length) {
int dir = 0;
unsigned int btime = apdo->buffer_length;
diff --git a/audio/audio.c b/audio/audio.c
index c00f4de..7fc3aa9 100644
--- a/audio/audio.c
+++ b/audio/audio.c
@@ -242,7 +242,7 @@ static int audio_validate_settings (struct audsettings *as)
{
int invalid;
- invalid = as->nchannels != 1 && as->nchannels != 2;
+ invalid = as->nchannels < 1;
invalid |= as->endianness != 0 && as->endianness != 1;
switch (as->fmt) {