mirror of
https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git
synced 2024-11-25 21:11:00 +00:00
webrtc: Require Send+Sync
for signaller implementations
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/1432>
This commit is contained in:
parent
80b58f3b45
commit
1af18f3028
1 changed files with 1 additions and 1 deletions
|
@ -474,7 +474,7 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
pub trait SignallableImpl: object::ObjectImpl + 'static {
|
||||
pub trait SignallableImpl: object::ObjectImpl + Send + Sync + 'static {
|
||||
fn start(&self) {}
|
||||
fn stop(&self) {}
|
||||
fn send_sdp(&self, _session_id: &str, _sdp: &gst_webrtc::WebRTCSessionDescription) {}
|
||||
|
|
Loading…
Reference in a new issue