[Qemu-devel] [PATCH v2 21/52] paaudio: do not move stream when sink/source name is specified

Kővágó, Zoltán posted 52 patches 6 years, 10 months ago
Only 50 patches received!
There is a newer version of this series
[Qemu-devel] [PATCH v2 21/52] paaudio: do not move stream when sink/source name is specified
Posted by Kővágó, Zoltán 6 years, 10 months ago
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>
---
 audio/paaudio.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/audio/paaudio.c b/audio/paaudio.c
index 24b75ca503..21ffbf7f6e 100644
--- a/audio/paaudio.c
+++ b/audio/paaudio.c
@@ -516,6 +516,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 {
-- 
2.20.1