[pulseaudio-discuss] [PATCH 4/4] stream_intercaction: interact if a stream starts corked

Tanu Kaskinen tanuk at iki.fi
Mon Mar 21 13:53:46 UTC 2016


On Thu, 2016-03-17 at 22:35 +0100, Georg Chini wrote:
> This patch deals with the case that applications start new streams corked.
> It was not included in the original series but sent at a later time.
> In case of module-role-cork it will only mute the stream because corking is
> removed later by the application.
> 
> ---
>  src/modules/stream-interaction.c | 32 +++++++++++++++++++-------------
>  1 file changed, 19 insertions(+), 13 deletions(-)
> 
> @@ -164,7 +164,13 @@ static inline void apply_interaction_to_sink(struct userdata *u, pa_sink *s, con
>          if (!trigger)
>              continue;
>  
> +        /* Some applications start their streams corked, so the stream is uncorked by */
> +        /* the application only after sink_input_put() was called. If a new stream turns */
> +        /* up, act as if it was not corked. In the case of module-role-cork this will */
> +        /* only mute the stream because corking is reverted later by the application */
>          corked = (pa_sink_input_get_state(j) == PA_SINK_INPUT_CORKED);
> +        if (new_stream && corked)
> +            corked = false;

I don't understand the last sentence of the comment (and the commit
message) - I thought this patch solves the problem that applications
will uncork the stream when they shouldn't, but the comment makes it
sound like this is still a problem.

That aside, it seems to me that we shouldn't care about the current
cork state anyway. If the stream is corked when we send the cork
request, the application has two reasons to have the stream corked: the
first reason is whatever reason made the application cork the stream in
the first place, and the second reason is our cork request. When we
send the uncork request, only one of those reasons goes away. It's up
to the application to keep track of its corking reasons, and keep the
stream corked as long as there is any reason to do so.

-- 
Tanu


More information about the pulseaudio-discuss mailing list