mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-12-28 11:00:34 +00:00
36 lines
1.2 KiB
Rust
36 lines
1.2 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use glib::{translate::*, Cast, IsA};
|
|
|
|
use crate::Allocator;
|
|
|
|
impl Allocator {
|
|
#[doc(alias = "gst_allocator_register")]
|
|
pub fn register(name: &str, allocator: impl IsA<Allocator>) {
|
|
skip_assert_initialized!();
|
|
unsafe {
|
|
#[cfg(not(feature = "v1_22"))]
|
|
{
|
|
// See https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/3364
|
|
if crate::version() < (1, 20, 5, 0) {
|
|
ffi::gst_allocator_register(
|
|
name.to_glib_full(),
|
|
allocator.upcast().into_glib_ptr(),
|
|
);
|
|
} else {
|
|
ffi::gst_allocator_register(
|
|
name.to_glib_none().0,
|
|
allocator.upcast().into_glib_ptr(),
|
|
);
|
|
}
|
|
}
|
|
#[cfg(feature = "v1_22")]
|
|
{
|
|
ffi::gst_allocator_register(
|
|
name.to_glib_none().0,
|
|
allocator.upcast().into_glib_ptr(),
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|