ao_pipewire: remove some unnecessary linebreaks

This commit is contained in:
Thomas Weißschuh 2023-02-03 04:15:37 +00:00 committed by Philip Langdale
parent c2c36c0d57
commit af3c7f3d31
1 changed files with 2 additions and 7 deletions

View File

@ -541,18 +541,13 @@ static int init(struct ao *ao)
pw_thread_loop_lock(p->loop);
p->stream = pw_stream_new(
p->core,
"audio-src",
props);
p->stream = pw_stream_new(p->core, "audio-src", props);
if (p->stream == NULL) {
pw_thread_loop_unlock(p->loop);
goto error;
}
pw_stream_add_listener(p->stream,
&p->stream_listener,
&stream_events, ao);
pw_stream_add_listener(p->stream, &p->stream_listener, &stream_events, ao);
if (pw_stream_connect(p->stream,
PW_DIRECTION_OUTPUT, PW_ID_ANY,