mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-25 11:01:10 +00:00
4ebec84f5e
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>
79 lines
2.2 KiB
Rust
79 lines
2.2 KiB
Rust
use std::{
|
|
fmt,
|
|
os::unix::prelude::{IntoRawFd, RawFd},
|
|
};
|
|
|
|
use glib::{prelude::*, translate::*};
|
|
use gst::{Memory, MemoryRef};
|
|
|
|
#[cfg(feature = "v1_16")]
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
|
|
use crate::FdMemoryFlags;
|
|
use crate::{ffi, DmaBufAllocator, FdMemory, FdMemoryRef};
|
|
|
|
gst::memory_object_wrapper!(
|
|
DmaBufMemory,
|
|
DmaBufMemoryRef,
|
|
gst::ffi::GstMemory,
|
|
|mem: &gst::MemoryRef| { unsafe { from_glib(ffi::gst_is_dmabuf_memory(mem.as_mut_ptr())) } },
|
|
FdMemory,
|
|
FdMemoryRef,
|
|
Memory,
|
|
MemoryRef
|
|
);
|
|
|
|
impl fmt::Debug for DmaBufMemory {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
DmaBufMemoryRef::fmt(self, f)
|
|
}
|
|
}
|
|
|
|
impl fmt::Debug for DmaBufMemoryRef {
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
MemoryRef::fmt(self, f)
|
|
}
|
|
}
|
|
|
|
impl DmaBufMemoryRef {
|
|
#[doc(alias = "gst_dmabuf_memory_get_fd")]
|
|
pub fn fd(&self) -> RawFd {
|
|
skip_assert_initialized!();
|
|
unsafe { ffi::gst_dmabuf_memory_get_fd(self.as_mut_ptr()) }
|
|
}
|
|
}
|
|
|
|
impl DmaBufAllocator {
|
|
#[doc(alias = "gst_dmabuf_allocator_alloc")]
|
|
pub unsafe fn alloc<A: IntoRawFd>(
|
|
&self,
|
|
fd: A,
|
|
size: usize,
|
|
) -> Result<gst::Memory, glib::BoolError> {
|
|
skip_assert_initialized!();
|
|
Option::<_>::from_glib_full(ffi::gst_dmabuf_allocator_alloc(
|
|
self.unsafe_cast_ref::<gst::Allocator>().to_glib_none().0,
|
|
fd.into_raw_fd(),
|
|
size,
|
|
))
|
|
.ok_or_else(|| glib::bool_error!("Failed to allocate memory"))
|
|
}
|
|
|
|
#[cfg(feature = "v1_16")]
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
|
|
#[doc(alias = "gst_dmabuf_allocator_alloc_with_flags")]
|
|
pub unsafe fn alloc_with_flags(
|
|
&self,
|
|
fd: RawFd,
|
|
size: usize,
|
|
flags: FdMemoryFlags,
|
|
) -> Result<gst::Memory, glib::BoolError> {
|
|
skip_assert_initialized!();
|
|
Option::<_>::from_glib_full(ffi::gst_dmabuf_allocator_alloc_with_flags(
|
|
self.unsafe_cast_ref::<gst::Allocator>().to_glib_none().0,
|
|
fd,
|
|
size,
|
|
flags.into_glib(),
|
|
))
|
|
.ok_or_else(|| glib::bool_error!("Failed to allocate memory"))
|
|
}
|
|
}
|