diff options
author | Volker RĂ¼melin <vr_qemu@t-online.de> | 2020-09-20 19:17:27 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-09-23 08:19:42 +0200 |
commit | a8a98cfd42f70ac1b725ee25e23154291228b330 (patch) | |
tree | 92d73a04ff4051bd477b4232835db50596dd7930 /audio/audio.c | |
parent | 2d8823077e56598da1ad6adf7e5760f84057bad1 (diff) |
audio: run downstream playback queue unconditionally
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>
Diffstat (limited to 'audio/audio.c')
-rw-r--r-- | audio/audio.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/audio/audio.c b/audio/audio.c index 8587e3d152..6ff3f168d7 100644 --- 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; } |