mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2025-04-29 04:55:00 +00:00
webrtcsink: apply rustfmt
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1469>
This commit is contained in:
parent
8f3a6171ac
commit
2228f882d8
1 changed files with 15 additions and 15 deletions
|
@ -1878,7 +1878,7 @@ impl BaseWebRTCSink {
|
|||
gst::StreamError::Failed,
|
||||
["Signalling error: {}", error]
|
||||
);
|
||||
})
|
||||
}),
|
||||
),
|
||||
|
||||
request_meta: signaler.connect_closure(
|
||||
|
@ -1888,7 +1888,7 @@ impl BaseWebRTCSink {
|
|||
let meta = instance.imp().settings.lock().unwrap().meta.clone();
|
||||
|
||||
meta
|
||||
})
|
||||
}),
|
||||
),
|
||||
|
||||
session_requested: signaler.connect_closure(
|
||||
|
@ -1898,7 +1898,7 @@ impl BaseWebRTCSink {
|
|||
if let Err(err) = instance.imp().start_session(session_id, peer_id, offer) {
|
||||
gst::warning!(CAT, "{}", err);
|
||||
}
|
||||
})
|
||||
}),
|
||||
),
|
||||
|
||||
session_description: signaler.connect_closure(
|
||||
|
@ -1941,7 +1941,7 @@ impl BaseWebRTCSink {
|
|||
gst::warning!(CAT, "{}", err);
|
||||
}
|
||||
false
|
||||
})
|
||||
}),
|
||||
),
|
||||
|
||||
shutdown: signaler.connect_closure(
|
||||
|
@ -1949,7 +1949,7 @@ impl BaseWebRTCSink {
|
|||
false,
|
||||
glib::closure!(@watch instance => move |_signaler: glib::Object|{
|
||||
instance.imp().shutdown(instance);
|
||||
})
|
||||
}),
|
||||
),
|
||||
});
|
||||
}
|
||||
|
@ -2617,7 +2617,7 @@ impl BaseWebRTCSink {
|
|||
));
|
||||
}
|
||||
}
|
||||
})
|
||||
}),
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue