124a38041d96c92efeba9db75bb985842ac01157
[AGL/meta-agl-devel.git] /
1 From f4903fe9c356b58737eb33fcfa389e006d18f801 Mon Sep 17 00:00:00 2001
2 From: George Kiagiadakis <george.kiagiadakis@collabora.com>
3 Date: Thu, 11 Jul 2019 16:34:35 +0300
4 Subject: [PATCH] gst/pwaudioringbuffer: wait only for STREAM_STATE_CONFIGURE
5  when starting
6
7 The CONFIGURE state is reached when the pw_client_node is exported,
8 while the READY state requires the session manager to try and link
9 the stream. If the SM does not want to link the stream due to policy,
10 the client should not hang there forever.
11
12 Upstream-Status: Submitted [https://github.com/PipeWire/pipewire/pull/140]
13 ---
14  src/gst/gstpwaudioringbuffer.c | 4 ++--
15  1 file changed, 2 insertions(+), 2 deletions(-)
16
17 diff --git a/src/gst/gstpwaudioringbuffer.c b/src/gst/gstpwaudioringbuffer.c
18 index 97350f38..3efec6ec 100644
19 --- a/src/gst/gstpwaudioringbuffer.c
20 +++ b/src/gst/gstpwaudioringbuffer.c
21 @@ -442,9 +442,9 @@ gst_pw_audio_ring_buffer_acquire (GstAudioRingBuffer *buf,
22            params, 1) < 0)
23      goto start_error;
24  
25 -  GST_DEBUG_OBJECT (self->elem, "waiting for stream READY");
26 +  GST_DEBUG_OBJECT (self->elem, "waiting for stream CONFIGURE");
27  
28 -  if (!wait_for_stream_state (self, PW_STREAM_STATE_READY))
29 +  if (!wait_for_stream_state (self, PW_STREAM_STATE_CONFIGURE))
30      goto start_error;
31  
32    pw_thread_loop_unlock (self->main_loop);
33 -- 
34 2.23.0
35