From: "Zoltán Kővágó" <dirty.ice.hu@gmail.com>
To: "Marc-André Lureau" <marcandre.lureau@gmail.com>
Cc: QEMU <qemu-devel@nongnu.org>, Gerd Hoffmann <kraxel@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 09/11] paaudio: fix playback glitches
Date: Sun, 14 Jul 2019 17:21:09 +0200 [thread overview]
Message-ID: <05fc3584-c89d-1914-fa3d-1dff89e92d55@gmail.com> (raw)
In-Reply-To: <CAJ+F1C+LZp0-0D7gkbfTKHY91FpFyeMKOQRu1NVGwMe-ycEJ1g@mail.gmail.com>
On 2019-07-10 21:58, Marc-André Lureau wrote:
> On Tue, Jul 9, 2019 at 10:49 PM Kővágó, Zoltán <dirty.ice.hu@gmail.com> 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 <DirtY.iCE.hu@gmail.com>
>
> Could you explain how this is related to PA_STREAM_ADJUST_LATENCY ?
According to the pulseaudio documentation[1], you can't use
PA_STREAM_ADJUST_LATENCY and PA_STREAM_EARLY_REQUESTS at the same time.
[1]:
https://www.freedesktop.org/software/pulseaudio/doxygen/def_8h.html#a6966d809483170bc6d2e6c16188850fca98e436f686fc385697e565eb1ecb2609
>> ---
>> 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
>
next prev parent reply other threads:[~2019-07-14 15:21 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-09 18:35 [Qemu-devel] [PATCH 00/11] Multiple simultaneous audio backends Kővágó, Zoltán
2019-07-09 18:35 ` [Qemu-devel] [PATCH 01/11] audio: reduce glob_audio_state usage Kővágó, Zoltán
2019-07-10 19:59 ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 02/11] audio: basic support for multi backend audio Kővágó, Zoltán
2019-07-10 4:06 ` Markus Armbruster
2019-07-10 19:37 ` Zoltán Kővágó
2019-07-11 8:58 ` Dr. David Alan Gilbert
2019-07-11 14:37 ` Markus Armbruster
2019-07-11 19:07 ` Zoltán Kővágó
2019-07-10 19:58 ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 03/11] audio: add audiodev properties to frontends Kővágó, Zoltán
2019-07-10 19:58 ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 04/11] audio: audiodev= parameters no longer optional when -audiodev present Kővágó, Zoltán
2019-07-10 19:30 ` Marc-André Lureau
2019-07-11 19:09 ` Zoltán Kővágó
2019-07-09 18:35 ` [Qemu-devel] [PATCH 05/11] paaudio: do not move stream when sink/source name is specified Kővágó, Zoltán
2019-07-10 19:58 ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 06/11] paaudio: properly disconnect streams in fini_* Kővágó, Zoltán
2019-07-10 19:58 ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 07/11] audio: remove audio_MIN, audio_MAX Kővágó, Zoltán
2019-07-10 19:58 ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 08/11] audio: do not run each backend in audio_run Kővágó, Zoltán
2019-07-10 19:58 ` Marc-André Lureau
2019-07-09 18:35 ` [Qemu-devel] [PATCH 09/11] paaudio: fix playback glitches Kővágó, Zoltán
2019-07-10 19:58 ` Marc-André Lureau
2019-07-14 15:21 ` Zoltán Kővágó [this message]
2019-07-09 18:35 ` [Qemu-devel] [PATCH 10/11] audio: remove read and write pcm_ops Kővágó, Zoltán
2019-07-10 19:57 ` Marc-André Lureau
2019-07-11 19:20 ` Zoltán Kővágó
2019-07-09 18:35 ` [Qemu-devel] [PATCH 11/11] audio: use size_t where makes sense Kővágó, Zoltán
2019-07-09 22:04 ` [Qemu-devel] [PATCH 00/11] Multiple simultaneous audio backends no-reply
2019-07-09 22:44 ` no-reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=05fc3584-c89d-1914-fa3d-1dff89e92d55@gmail.com \
--to=dirty.ice.hu@gmail.com \
--cc=kraxel@redhat.com \
--cc=marcandre.lureau@gmail.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).