Skip to content

Commit

Permalink
src: lib: stream: sink: shmsink doesn't need to wait
Browse files Browse the repository at this point in the history
  • Loading branch information
joaoantoniocardoso authored and patrickelectric committed Jul 19, 2024
1 parent be9b059 commit 55515e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/stream/sink/rtsp_sink.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ impl RtspSink {
let sink = gst::ElementFactory::make("shmsink")
.property_from_str("socket-path", &socket_path)
.property("sync", false)
.property("wait-for-connection", true)
.property("wait-for-connection", false)
.property("shm-size", 10_000_000u32)
.property("enable-last-sample", false)
.build()?;
Expand Down

0 comments on commit 55515e9

Please sign in to comment.