audio: basic support for multichannel audio
authorKővágó, Zoltán <dirty.ice.hu@gmail.com>
Sun, 13 Oct 2019 19:58:03 +0000 (21:58 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Fri, 18 Oct 2019 06:14:05 +0000 (08:14 +0200)
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>
audio/alsaaudio.c
audio/audio.c

index eddf013a537cdfa13f4f61c0864370b931a0ed80..f37ce1ce85705388c5fd88d760cc0de4f5e98181 100644 (file)
@@ -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;
index c00f4deddd3d63ae6461d365078a78060ead89a8..7fc3aa9d163755ce877b44a75e9229dc150f5fbf 100644 (file)
@@ -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) {