projects
/
qemu.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2d88230
)
audio: run downstream playback queue unconditionally
author
Volker Rümelin
<vr_qemu@t-online.de>
Sun, 20 Sep 2020 17:17:27 +0000
(19:17 +0200)
committer
Gerd Hoffmann
<kraxel@redhat.com>
Wed, 23 Sep 2020 06:19:42 +0000
(08:19 +0200)
Run the downstream playback queue even if there are no samples
in the mixing engine buffer. The downstream queue may still have
queued samples.
Signed-off-by: Volker Rümelin <vr_qemu@t-online.de>
Message-id:
20200920171729
.15861-7-vr_qemu@t-online.de
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
audio/audio.c
patch
|
blob
|
history
diff --git
a/audio/audio.c
b/audio/audio.c
index 8587e3d15225a004e86d27ac4a57dd30ceb66a0b..6ff3f168d7b7d4f9437b5b055d5ca59e49113e01 100644
(file)
--- a/
audio/audio.c
+++ b/
audio/audio.c
@@
-1186,6
+1186,9
@@
static void audio_run_out (AudioState *s)
}
}
}
+ if (hw->pcm_ops->run_buffer_out) {
+ hw->pcm_ops->run_buffer_out(hw);
+ }
continue;
}