mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-02-24 14:56:24 +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>
40 lines
1,004 B
Rust
40 lines
1,004 B
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
cfg_if::cfg_if! {
|
|
if #[cfg(unix)] {
|
|
use glib::translate::ToGlibPtr;
|
|
|
|
use std::mem;
|
|
use std::os::unix;
|
|
} else if #[cfg(docsrs)] {
|
|
// Declare a fake RawFd for doc generation on windows
|
|
pub mod unix {
|
|
pub mod io {
|
|
pub struct RawFd{}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
use super::Bus;
|
|
|
|
pub trait UnixBusExtManual: 'static {
|
|
#[doc(alias = "get_pollfd")]
|
|
#[doc(alias = "gst_bus_get_pollfd")]
|
|
fn pollfd(&self) -> unix::io::RawFd;
|
|
}
|
|
|
|
impl UnixBusExtManual for Bus {
|
|
fn pollfd(&self) -> unix::io::RawFd {
|
|
#[cfg(unix)]
|
|
unsafe {
|
|
let mut pollfd = mem::MaybeUninit::uninit();
|
|
crate::ffi::gst_bus_get_pollfd(self.to_glib_none().0, pollfd.as_mut_ptr());
|
|
let pollfd = pollfd.assume_init();
|
|
pollfd.fd
|
|
}
|
|
|
|
#[cfg(all(not(unix), docsrs))]
|
|
unix::io::RawFd {}
|
|
}
|
|
}
|