1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// 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::{ffi, FdAllocator};
use glib::{prelude::*, translate::*};

glib::wrapper! {
    /// Base class for allocators with dmabuf-backed memory
    ///
    /// # Implements
    ///
    /// [`FdAllocatorExt`][trait@crate::prelude::FdAllocatorExt], [`trait@gst::prelude::AllocatorExt`]
    #[doc(alias = "GstDmaBufAllocator")]
    pub struct DmaBufAllocator(Object<ffi::GstDmaBufAllocator, ffi::GstDmaBufAllocatorClass>) @extends FdAllocator, gst::Allocator;

    match fn {
        type_ => || ffi::gst_dmabuf_allocator_get_type(),
    }
}

impl DmaBufAllocator {
    pub const NONE: Option<&'static DmaBufAllocator> = None;

    /// Return a new dmabuf allocator.
    ///
    /// # Returns
    ///
    /// a new dmabuf allocator. Use `gst_object_unref()` to
    /// release the allocator after usage
    #[doc(alias = "gst_dmabuf_allocator_new")]
    pub fn new() -> DmaBufAllocator {
        assert_initialized_main_thread!();
        unsafe { gst::Allocator::from_glib_full(ffi::gst_dmabuf_allocator_new()).unsafe_cast() }
    }
}

impl Default for DmaBufAllocator {
    fn default() -> Self {
        Self::new()
    }
}

unsafe impl Send for DmaBufAllocator {}
unsafe impl Sync for DmaBufAllocator {}