mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-23 02:26:35 +00:00
gcc: Ignore errors pausing task
We can't do much about it at this point Fixes https://github.com/centricular/webrtcsink/issues/110
This commit is contained in:
parent
e110847ede
commit
f4692cb1dd
1 changed files with 1 additions and 1 deletions
|
@ -1054,7 +1054,7 @@ impl BandwidthEstimator {
|
|||
self.srcpad.start_task(move || {
|
||||
let pause = || {
|
||||
if let Some(pad) = weak_pad.upgrade() {
|
||||
pad.pause_task().unwrap();
|
||||
let _ = pad.pause_task();
|
||||
}
|
||||
};
|
||||
let bwe = weak_bwe
|
||||
|
|
Loading…
Reference in a new issue