gstreamer-rs/gstreamer-net/src/auto/net_time_provider.rs

129 lines
3.8 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)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
2017-12-16 12:48:29 +00:00
// DO NOT EDIT
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::{boxed::Box as Box_, mem::transmute};
2017-12-16 12:48:29 +00:00
2020-12-17 22:34:53 +00:00
glib::wrapper! {
#[doc(alias = "GstNetTimeProvider")]
2020-11-22 09:45:06 +00:00
pub struct NetTimeProvider(Object<ffi::GstNetTimeProvider, ffi::GstNetTimeProviderClass>) @extends gst::Object;
2017-12-16 12:48:29 +00:00
match fn {
type_ => || ffi::gst_net_time_provider_get_type(),
2017-12-16 12:48:29 +00:00
}
}
impl NetTimeProvider {
#[doc(alias = "gst_net_time_provider_new")]
pub fn new(
clock: &impl IsA<gst::Clock>,
address: Option<&str>,
port: i32,
) -> Result<NetTimeProvider, glib::BoolError> {
assert_initialized_main_thread!();
unsafe {
Option::<_>::from_glib_full(ffi::gst_net_time_provider_new(
clock.as_ref().to_glib_none().0,
address.to_glib_none().0,
port,
))
.ok_or_else(|| glib::bool_error!("Failed to create NetTimeProvider"))
}
}
2021-04-11 19:38:18 +00:00
pub fn is_active(&self) -> bool {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self, "active")
2017-12-16 12:48:29 +00:00
}
2021-04-11 19:38:18 +00:00
pub fn set_active(&self, active: bool) {
glib::ObjectExt::set_property(self, "active", active)
2017-12-16 12:48:29 +00:00
}
2021-04-11 19:38:18 +00:00
pub fn address(&self) -> Option<glib::GString> {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self, "address")
2017-12-16 12:48:29 +00:00
}
2021-04-11 19:38:18 +00:00
pub fn clock(&self) -> Option<gst::Clock> {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self, "clock")
2017-12-16 12:48:29 +00:00
}
2021-04-11 19:38:18 +00:00
pub fn port(&self) -> i32 {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self, "port")
2017-12-16 12:48:29 +00:00
}
#[doc(alias = "qos-dscp")]
2021-04-11 19:38:18 +00:00
pub fn qos_dscp(&self) -> i32 {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self, "qos-dscp")
2018-03-15 08:12:01 +00:00
}
#[doc(alias = "qos-dscp")]
2021-04-11 19:38:18 +00:00
pub fn set_qos_dscp(&self, qos_dscp: i32) {
glib::ObjectExt::set_property(self, "qos-dscp", qos_dscp)
2018-03-15 08:12:01 +00:00
}
#[doc(alias = "active")]
pub fn connect_active_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_active_trampoline<
F: Fn(&NetTimeProvider) + Send + Sync + 'static,
>(
2020-11-22 09:45:06 +00:00
this: *mut ffi::GstNetTimeProvider,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
2017-12-16 12:48:29 +00:00
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::active\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_active_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
2017-12-16 12:48:29 +00:00
}
}
#[doc(alias = "qos-dscp")]
pub fn connect_qos_dscp_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_qos_dscp_trampoline<
F: Fn(&NetTimeProvider) + Send + Sync + 'static,
>(
2020-11-22 09:45:06 +00:00
this: *mut ffi::GstNetTimeProvider,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
2018-03-15 08:12:01 +00:00
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::qos-dscp\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_qos_dscp_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
2018-03-15 08:12:01 +00:00
}
}
2017-12-16 12:48:29 +00:00
}
unsafe impl Send for NetTimeProvider {}
unsafe impl Sync for NetTimeProvider {}