gstreamer-rs/gstreamer/src/auto/system_clock.rs

100 lines
2.9 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)
// DO NOT EDIT
2020-11-21 13:46:33 +00:00
use crate::Clock;
use crate::ClockType;
use crate::Object;
2019-01-16 11:32:39 +00:00
use glib::object::Cast;
use glib::object::IsA;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
use glib::translate::*;
use glib::StaticType;
2021-04-19 16:24:43 +00:00
use glib::ToValue;
use std::boxed::Box as Box_;
2020-04-13 16:11:33 +00:00
use std::mem::transmute;
2020-12-17 22:34:53 +00:00
glib::wrapper! {
#[doc(alias = "GstSystemClock")]
2020-11-21 13:46:33 +00:00
pub struct SystemClock(Object<ffi::GstSystemClock, ffi::GstSystemClockClass>) @extends Clock, Object;
match fn {
type_ => || ffi::gst_system_clock_get_type(),
}
}
impl SystemClock {
2021-11-16 14:02:58 +00:00
pub const NONE: Option<&'static SystemClock> = None;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_system_clock_obtain")]
pub fn obtain() -> Clock {
assert_initialized_main_thread!();
2020-11-21 13:46:33 +00:00
unsafe { from_glib_full(ffi::gst_system_clock_obtain()) }
}
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_system_clock_set_default")]
pub fn set_default(new_clock: Option<&impl IsA<Clock>>) {
assert_initialized_main_thread!();
unsafe {
2020-11-21 13:46:33 +00:00
ffi::gst_system_clock_set_default(new_clock.map(|p| p.as_ref()).to_glib_none().0);
}
}
}
unsafe impl Send for SystemClock {}
unsafe impl Sync for SystemClock {}
pub trait SystemClockExt: 'static {
#[doc(alias = "clock-type")]
2021-04-11 19:38:18 +00:00
fn clock_type(&self) -> ClockType;
#[doc(alias = "clock-type")]
2021-04-11 19:38:18 +00:00
fn set_clock_type(&self, clock_type: ClockType);
#[doc(alias = "clock-type")]
fn connect_clock_type_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
}
impl<O: IsA<SystemClock>> SystemClockExt for O {
2021-04-11 19:38:18 +00:00
fn clock_type(&self) -> ClockType {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self.as_ref(), "clock-type")
}
2021-04-11 19:38:18 +00:00
fn set_clock_type(&self, clock_type: ClockType) {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::set_property(self.as_ref(), "clock-type", &clock_type)
}
fn connect_clock_type_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_clock_type_trampoline<
P: IsA<SystemClock>,
F: Fn(&P) + Send + Sync + 'static,
>(
2020-11-21 13:46:33 +00:00
this: *mut ffi::GstSystemClock,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
2021-06-21 21:07:45 +00:00
f(SystemClock::from_glib_borrow(this).unsafe_cast_ref())
2019-06-18 10:10:46 +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::clock-type\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_clock_type_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}