1 From 30622ed39774d3a2d3133effbc73caac5fb12596 Mon Sep 17 00:00:00 2001
2 From: George Kiagiadakis <george.kiagiadakis@collabora.com>
3 Date: Thu, 11 Jul 2019 17:07:15 +0300
4 Subject: [PATCH] gst/pwaudiosink: set the default latency time (buffer size)
7 This is to solve underrun issues that seem to appear with the default
8 10ms latency that GstBaseAudioSink has.
9 Hopefully in the future we will have a better mechanism to pick
10 the appropriate latency instead of hardcoding it here.
12 Upstream-Status: Submitted [https://github.com/PipeWire/pipewire/pull/140]
14 src/gst/gstpwaudiosink.c | 7 +++++++
15 1 file changed, 7 insertions(+)
17 diff --git a/src/gst/gstpwaudiosink.c b/src/gst/gstpwaudiosink.c
18 index 6cb71385..069996c3 100644
19 --- a/src/gst/gstpwaudiosink.c
20 +++ b/src/gst/gstpwaudiosink.c
21 @@ -57,6 +57,13 @@ static void
22 gst_pw_audio_sink_init (GstPwAudioSink * self)
26 + /* Bump the default buffer size up to 21.3 ms, which is the default on most
27 + * sound cards, in hope to match the alsa buffer size on the pipewire server.
28 + * This may not always happen, but it still sounds better than the 10ms
29 + * default latency. This is temporary until we have a better mechanism to
30 + * select the appropriate latency */
31 + GST_AUDIO_BASE_SINK (self)->latency_time = 21333;