[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH 09/11] paaudio: fix playback glitches
From: |
Marc-André Lureau |
Subject: |
Re: [Qemu-devel] [PATCH 09/11] paaudio: fix playback glitches |
Date: |
Wed, 10 Jul 2019 23:58:07 +0400 |
On Tue, Jul 9, 2019 at 10:49 PM Kővágó, Zoltán <address@hidden> wrote:
>
> Pulseaudio normally assumes that when the server wants it, the client
> can generate the audio samples and send it right away. Unfortunately
> this is not the case with QEMU -- it's up to the emulated system when
> does it generate the samples. Buffering the samples and sending them
> from a background thread is just a workaround, that doesn't work too
> well. Instead enable pa's compatibility support and let pa worry about
> the details.
>
> Signed-off-by: Kővágó, Zoltán <address@hidden>
Could you explain how this is related to PA_STREAM_ADJUST_LATENCY ?
> ---
> audio/paaudio.c | 6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
> diff --git a/audio/paaudio.c b/audio/paaudio.c
> index 9d46f11b0a..d320d2e453 100644
> --- a/audio/paaudio.c
> +++ b/audio/paaudio.c
> @@ -512,10 +512,8 @@ static pa_stream *qpa_simple_new (
>
> flags =
> PA_STREAM_INTERPOLATE_TIMING
> -#ifdef PA_STREAM_ADJUST_LATENCY
> - | PA_STREAM_ADJUST_LATENCY
> -#endif
> - | PA_STREAM_AUTO_TIMING_UPDATE;
> + | PA_STREAM_AUTO_TIMING_UPDATE
> + | PA_STREAM_EARLY_REQUESTS;
>
> if (dev) {
> /* don't move the stream if the user specified a sink/source */
> --
> 2.22.0
>
>
--
Marc-André Lureau
- [Qemu-devel] [PATCH 00/11] Multiple simultaneous audio backends, Kővágó, Zoltán, 2019/07/09
- [Qemu-devel] [PATCH 08/11] audio: do not run each backend in audio_run, Kővágó, Zoltán, 2019/07/09
- [Qemu-devel] [PATCH 06/11] paaudio: properly disconnect streams in fini_*, Kővágó, Zoltán, 2019/07/09
- [Qemu-devel] [PATCH 09/11] paaudio: fix playback glitches, Kővágó, Zoltán, 2019/07/09
- Re: [Qemu-devel] [PATCH 09/11] paaudio: fix playback glitches,
Marc-André Lureau <=
- [Qemu-devel] [PATCH 05/11] paaudio: do not move stream when sink/source name is specified, Kővágó, Zoltán, 2019/07/09
- [Qemu-devel] [PATCH 03/11] audio: add audiodev properties to frontends, Kővágó, Zoltán, 2019/07/09
- [Qemu-devel] [PATCH 10/11] audio: remove read and write pcm_ops, Kővágó, Zoltán, 2019/07/09
- [Qemu-devel] [PATCH 01/11] audio: reduce glob_audio_state usage, Kővágó, Zoltán, 2019/07/09