gstreamer-rs/gstreamer/src/auto/allocator.rs
Sebastian Dröge d3543efec2 gstreamer: Manually implement Allocator::register()
Due to a bug it causes use-after-free in versions < 1.20.5, so work
around that here.
2022-11-08 19:07:48 +02:00

68 lines
1.8 KiB
Rust

// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
// DO NOT EDIT
use crate::AllocationParams;
use crate::Memory;
use crate::Object;
use glib::object::IsA;
use glib::translate::*;
glib::wrapper! {
#[doc(alias = "GstAllocator")]
pub struct Allocator(Object<ffi::GstAllocator, ffi::GstAllocatorClass>) @extends Object;
match fn {
type_ => || ffi::gst_allocator_get_type(),
}
}
impl Allocator {
pub const NONE: Option<&'static Allocator> = None;
#[doc(alias = "gst_allocator_find")]
pub fn find(name: Option<&str>) -> Option<Allocator> {
assert_initialized_main_thread!();
unsafe { from_glib_full(ffi::gst_allocator_find(name.to_glib_none().0)) }
}
}
unsafe impl Send for Allocator {}
unsafe impl Sync for Allocator {}
pub trait AllocatorExt: 'static {
#[doc(alias = "gst_allocator_alloc")]
fn alloc(
&self,
size: usize,
params: Option<&AllocationParams>,
) -> Result<Memory, glib::BoolError>;
#[doc(alias = "gst_allocator_set_default")]
fn set_default(&self);
}
impl<O: IsA<Allocator>> AllocatorExt for O {
fn alloc(
&self,
size: usize,
params: Option<&AllocationParams>,
) -> Result<Memory, glib::BoolError> {
unsafe {
Option::<_>::from_glib_full(ffi::gst_allocator_alloc(
self.as_ref().to_glib_none().0,
size,
mut_override(params.to_glib_none().0),
))
.ok_or_else(|| glib::bool_error!("Failed to allocate memory"))
}
}
fn set_default(&self) {
unsafe {
ffi::gst_allocator_set_default(self.as_ref().to_glib_full());
}
}
}