[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 08/15] paaudio: properly disconnect streams in fini_*
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PULL 08/15] paaudio: properly disconnect streams in fini_* |
Date: |
Tue, 13 Aug 2019 13:18:02 +0200 |
From: Kővágó, Zoltán <address@hidden>
Currently this needs a workaround due to bug #247 in pulseaudio.
Signed-off-by: Kővágó, Zoltán <address@hidden>
Reviewed-by: Marc-André Lureau <address@hidden>
Message-id: address@hidden
Signed-off-by: Gerd Hoffmann <address@hidden>
---
audio/paaudio.c | 25 +++++++++++++++++++++++--
1 file changed, 23 insertions(+), 2 deletions(-)
diff --git a/audio/paaudio.c b/audio/paaudio.c
index 24d98b344a37..1d68173636ed 100644
--- a/audio/paaudio.c
+++ b/audio/paaudio.c
@@ -685,6 +685,27 @@ static int qpa_init_in(HWVoiceIn *hw, struct audsettings
*as, void *drv_opaque)
return -1;
}
+static void qpa_simple_disconnect(PAConnection *c, pa_stream *stream)
+{
+ int err;
+
+ pa_threaded_mainloop_lock(c->mainloop);
+ /*
+ * wait until actually connects. workaround pa bug #247
+ * https://gitlab.freedesktop.org/pulseaudio/pulseaudio/issues/247
+ */
+ while (pa_stream_get_state(stream) == PA_STREAM_CREATING) {
+ pa_threaded_mainloop_wait(c->mainloop);
+ }
+
+ err = pa_stream_disconnect(stream);
+ if (err != 0) {
+ dolog("Failed to disconnect! err=%d\n", err);
+ }
+ pa_stream_unref(stream);
+ pa_threaded_mainloop_unlock(c->mainloop);
+}
+
static void qpa_fini_out (HWVoiceOut *hw)
{
void *ret;
@@ -696,7 +717,7 @@ static void qpa_fini_out (HWVoiceOut *hw)
audio_pt_join(&pa->pt, &ret, __func__);
if (pa->stream) {
- pa_stream_unref (pa->stream);
+ qpa_simple_disconnect(pa->g->conn, pa->stream);
pa->stream = NULL;
}
@@ -716,7 +737,7 @@ static void qpa_fini_in (HWVoiceIn *hw)
audio_pt_join(&pa->pt, &ret, __func__);
if (pa->stream) {
- pa_stream_unref (pa->stream);
+ qpa_simple_disconnect(pa->g->conn, pa->stream);
pa->stream = NULL;
}
--
2.18.1
- [Qemu-devel] [PULL 00/15] Audio 20190813 patches, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 03/15] audio: add audiodev property to vnc and wav_capture, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 04/15] audio: add audiodev properties to frontends, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 07/15] paaudio: do not move stream when sink/source name is specified, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 09/15] audio: remove audio_MIN, audio_MAX, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 14/15] audio: fix memory leak reported by ASAN, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 05/15] paaudio: prepare for multiple audiodev, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 11/15] paaudio: fix playback glitches, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 02/15] audio: basic support for multi backend audio, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 08/15] paaudio: properly disconnect streams in fini_*,
Gerd Hoffmann <=
- [Qemu-devel] [PULL 13/15] audio: use size_t where makes sense, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 06/15] audio: audiodev= parameters no longer optional when -audiodev present, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 15/15] audio: Add missing fall through comments, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 12/15] audio: remove read and write pcm_ops, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 10/15] audio: do not run each backend in audio_run, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 01/15] audio: reduce glob_audio_state usage, Gerd Hoffmann, 2019/08/13
- Re: [Qemu-devel] [PULL 00/15] Audio 20190813 patches, Peter Maydell, 2019/08/13
- Re: [Qemu-devel] [PULL 00/15] Audio 20190813 patches, Peter Maydell, 2019/08/16