mirror of https://github.com/mpv-player/mpv
ao_pipewire: remove some unnecessary linebreaks
This commit is contained in:
parent
c2c36c0d57
commit
af3c7f3d31
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue