mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-02-18 03:55:36 +00:00
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>
33 lines
1 KiB
Rust
33 lines
1 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use glib::{prelude::*, translate::*};
|
|
use libc::uintptr_t;
|
|
|
|
use crate::{ffi, VideoOverlay};
|
|
|
|
mod sealed {
|
|
pub trait Sealed {}
|
|
impl<T: super::IsA<super::VideoOverlay>> Sealed for T {}
|
|
}
|
|
|
|
pub trait VideoOverlayExtManual: sealed::Sealed + IsA<VideoOverlay> + 'static {
|
|
unsafe fn set_window_handle(&self, handle: uintptr_t) {
|
|
ffi::gst_video_overlay_set_window_handle(self.as_ref().to_glib_none().0, handle)
|
|
}
|
|
|
|
unsafe fn got_window_handle(&self, handle: uintptr_t) {
|
|
ffi::gst_video_overlay_got_window_handle(self.as_ref().to_glib_none().0, handle)
|
|
}
|
|
}
|
|
|
|
impl<O: IsA<VideoOverlay>> VideoOverlayExtManual for O {}
|
|
|
|
#[doc(alias = "gst_is_video_overlay_prepare_window_handle_message")]
|
|
pub fn is_video_overlay_prepare_window_handle_message(msg: &gst::MessageRef) -> bool {
|
|
skip_assert_initialized!();
|
|
unsafe {
|
|
from_glib(ffi::gst_is_video_overlay_prepare_window_handle_message(
|
|
msg.as_mut_ptr(),
|
|
))
|
|
}
|
|
}
|