]> git.proxmox.com Git - mirror_qemu.git/commitdiff
paaudio: do not move stream when sink/source name is specified
authorKővágó, Zoltán <dirty.ice.hu@gmail.com>
Sun, 18 Aug 2019 23:06:52 +0000 (01:06 +0200)
committerGerd Hoffmann <kraxel@redhat.com>
Wed, 21 Aug 2019 07:13:37 +0000 (09:13 +0200)
Unless we disable stream moving, pulseaudio can easily move the stream
on connect, effectively ignoring the source/sink specified by the user.

Signed-off-by: Kővágó, Zoltán <DirtY.iCE.hu@gmail.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-id: c245929463e6e46a48b2875a150815e2ccba11b4.1566168923.git.DirtY.iCE.hu@gmail.com
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
audio/paaudio.c

index cc3a34c2eaebb8290e73aa0c91dfab43ed71c278..24d98b344a3783aa284bb0a06d5029bd1a748315 100644 (file)
@@ -517,6 +517,11 @@ static pa_stream *qpa_simple_new (
 #endif
         | PA_STREAM_AUTO_TIMING_UPDATE;
 
+    if (dev) {
+        /* don't move the stream if the user specified a sink/source */
+        flags |= PA_STREAM_DONT_MOVE;
+    }
+
     if (dir == PA_STREAM_PLAYBACK) {
         r = pa_stream_connect_playback(stream, dev, attr, flags, NULL, NULL);
     } else {