mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-01-11 09:45:26 +00:00
50 lines
1.3 KiB
Rust
50 lines
1.3 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use crate::auto::Discoverer;
|
|
|
|
use glib::prelude::*;
|
|
use glib::signal::connect_raw;
|
|
use glib::signal::SignalHandlerId;
|
|
use glib::translate::*;
|
|
|
|
use std::boxed::Box as Box_;
|
|
use std::mem::transmute;
|
|
|
|
impl Discoverer {
|
|
pub fn set_timeout(&self, timeout: gst::ClockTime) {
|
|
self.set_property("timeout", &timeout);
|
|
}
|
|
|
|
pub fn timeout(&self) -> gst::ClockTime {
|
|
self.property("timeout")
|
|
}
|
|
|
|
#[doc(alias = "timeout")]
|
|
pub fn connect_timeout_notify<F: Fn(&Self) + Send + Sync + 'static>(
|
|
&self,
|
|
f: F,
|
|
) -> SignalHandlerId {
|
|
unsafe {
|
|
let f: Box_<F> = Box_::new(f);
|
|
connect_raw(
|
|
self.as_ptr() as *mut _,
|
|
b"notify::timeout\0".as_ptr() as *const _,
|
|
Some(transmute::<_, unsafe extern "C" fn()>(
|
|
notify_timeout_trampoline::<Self, F> as *const (),
|
|
)),
|
|
Box_::into_raw(f),
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
unsafe extern "C" fn notify_timeout_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(
|
|
this: *mut ffi::GstDiscoverer,
|
|
_param_spec: glib::ffi::gpointer,
|
|
f: glib::ffi::gpointer,
|
|
) where
|
|
P: IsA<Discoverer>,
|
|
{
|
|
let f: &F = &*(f as *const F);
|
|
f(Discoverer::from_glib_borrow(this).unsafe_cast_ref())
|
|
}
|