mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-12-23 10:30:40 +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 || {
|
self.srcpad.start_task(move || {
|
||||||
let pause = || {
|
let pause = || {
|
||||||
if let Some(pad) = weak_pad.upgrade() {
|
if let Some(pad) = weak_pad.upgrade() {
|
||||||
pad.pause_task().unwrap();
|
let _ = pad.pause_task();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
let bwe = weak_bwe
|
let bwe = weak_bwe
|
||||||
|
|
Loading…
Reference in a new issue