gstreamer-rs/gstreamer-webrtc/src/auto/web_rtcrtp_sender.rs

50 lines
1.3 KiB
Rust
Raw Normal View History

2018-04-23 17:34:22 +00:00
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
2018-03-15 16:04:49 +00:00
// DO NOT EDIT
use glib::translate::*;
2019-03-19 07:40:05 +00:00
use gst_web_rtc_sys;
use WebRTCDTLSTransport;
2018-03-15 16:04:49 +00:00
glib_wrapper! {
2020-11-07 10:17:25 +00:00
pub struct WebRTCRTPSender(Object<gst_web_rtc_sys::GstWebRTCRTPSender, gst_web_rtc_sys::GstWebRTCRTPSenderClass>);
2018-03-15 16:04:49 +00:00
match fn {
2019-03-19 07:40:05 +00:00
get_type => || gst_web_rtc_sys::gst_webrtc_rtp_sender_get_type(),
2018-03-15 16:04:49 +00:00
}
}
impl WebRTCRTPSender {
pub fn new() -> WebRTCRTPSender {
assert_initialized_main_thread!();
unsafe { from_glib_none(gst_web_rtc_sys::gst_webrtc_rtp_sender_new()) }
2018-03-15 16:04:49 +00:00
}
2019-01-21 20:00:48 +00:00
pub fn set_rtcp_transport(&self, transport: &WebRTCDTLSTransport) {
2018-03-15 16:04:49 +00:00
unsafe {
gst_web_rtc_sys::gst_webrtc_rtp_sender_set_rtcp_transport(
self.to_glib_none().0,
transport.to_glib_none().0,
);
2018-03-15 16:04:49 +00:00
}
}
2019-01-21 20:00:48 +00:00
pub fn set_transport(&self, transport: &WebRTCDTLSTransport) {
2018-03-15 16:04:49 +00:00
unsafe {
gst_web_rtc_sys::gst_webrtc_rtp_sender_set_transport(
self.to_glib_none().0,
transport.to_glib_none().0,
);
2018-03-15 16:04:49 +00:00
}
}
}
impl Default for WebRTCRTPSender {
fn default() -> Self {
Self::new()
}
}
unsafe impl Send for WebRTCRTPSender {}
unsafe impl Sync for WebRTCRTPSender {}