gstreamer 0.19.7

Rust bindings for GStreamer
Documentation
// Take a look at the license at the top of the repository in the LICENSE file.

use crate::Allocator;
use glib::translate::*;
use glib::IsA;

impl Allocator {
    #[doc(alias = "gst_allocator_register")]
    pub fn register(name: &str, allocator: &impl IsA<Allocator>) {
        skip_assert_initialized!();
        unsafe {
            // 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.as_ref().to_glib_full());
            } else {
                ffi::gst_allocator_register(
                    name.to_glib_none().0,
                    allocator.as_ref().to_glib_full(),
                );
            }
        }
    }
}