Skip to content

Commit

Permalink
Disable sync/async on nicesrc/nicesink, send/recv packets as soon as …
Browse files Browse the repository at this point in the history
…available
  • Loading branch information
jbg committed Oct 10, 2024
1 parent f5e8cf5 commit 1863281
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib-gst-meet/src/jingle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -581,13 +581,17 @@ impl JingleSession {
.property("stream", ice_stream_id)
.property("component", ice_component_id)
.property("agent", &ice_agent)
.property("sync", false)
.property("async", false)
.build()?;
pipeline.add(&nicesrc)?;

let nicesink = gstreamer::ElementFactory::make("nicesink")
.property("stream", ice_stream_id)
.property("component", ice_component_id)
.property("agent", &ice_agent)
.property("sync", false)
.property("async", false)
.build()?;
pipeline.add(&nicesink)?;

Expand Down

0 comments on commit 1863281

Please sign in to comment.