mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-26 21:41:03 +00:00
Remove erranous unwrap() on use_clock
This commit is contained in:
parent
3e5fa04379
commit
b66db922d8
1 changed files with 1 additions and 1 deletions
|
@ -1673,7 +1673,7 @@ impl WebRTCSink {
|
|||
|
||||
let clock = element.clock();
|
||||
|
||||
pipeline.use_clock(clock.as_ref()).unwrap();
|
||||
pipeline.use_clock(clock.as_ref());
|
||||
pipeline.set_start_time(gst::ClockTime::NONE);
|
||||
pipeline.set_base_time(element.base_time().unwrap());
|
||||
|
||||
|
|
Loading…
Reference in a new issue