Skip to content

Commit

Permalink
src: stream: rtsp: shmsrc needs to wait for connection
Browse files Browse the repository at this point in the history
  • Loading branch information
joaoantoniocardoso committed Mar 11, 2024
1 parent c02dc29 commit f951339
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stream/sink/rtsp_sink.rs
Expand Up @@ -242,7 +242,7 @@ impl RtspSink {
let socket_path = format!("/tmp/{id}");
let sink = gst::ElementFactory::make("shmsink")
.property_from_str("socket-path", &socket_path)
.property("sync", false)
.property("sync", true)
.property("wait-for-connection", true)
.property("shm-size", 10_000_000u32)
.property("enable-last-sample", false)
Expand Down

0 comments on commit f951339

Please sign in to comment.