gstreamer-rs/gstreamer-controller/src/control_point.rs
Bilal Elmoussaoui 4ebec84f5e Adapt to no longer renamed ffi crates
Allows us to set all the crates in the main workspace file, so changing
their versions or branch is much simpler and reduce the amount of noise
in the diff

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1450>
2024-06-02 11:20:55 +02:00

31 lines
825 B
Rust

// Take a look at the license at the top of the repository in the LICENSE file.
use glib::translate::*;
use crate::ffi;
glib::wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[doc(alias = "GstControlPoint")]
pub struct ControlPoint(Boxed<ffi::GstControlPoint>);
match fn {
copy => |ptr| ffi::gst_control_point_copy(mut_override(ptr)),
free => |ptr| ffi::gst_control_point_free(ptr),
type_ => || ffi::gst_control_point_get_type(),
}
}
impl ControlPoint {
pub fn timestamp(&self) -> gst::ClockTime {
unsafe { try_from_glib((*self.as_ptr()).timestamp).expect("undefined timestamp") }
}
pub fn value(&self) -> f64 {
unsafe { (*self.as_ptr()).value }
}
}
unsafe impl Send for ControlPoint {}
unsafe impl Sync for ControlPoint {}