Skip to content

Commit 55515e9

Browse files
joaoantoniocardosopatrickelectric
authored andcommitted
src: lib: stream: sink: shmsink doesn't need to wait
1 parent be9b059 commit 55515e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/stream/sink/rtsp_sink.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ impl RtspSink {
252252
let sink = gst::ElementFactory::make("shmsink")
253253
.property_from_str("socket-path", &socket_path)
254254
.property("sync", false)
255-
.property("wait-for-connection", true)
255+
.property("wait-for-connection", false)
256256
.property("shm-size", 10_000_000u32)
257257
.property("enable-last-sample", false)
258258
.build()?;

0 commit comments

Comments
 (0)