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
47
48
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use glib::object::Cast;
use glib::translate::*;
use gst;
use gst_video_sys;

glib_wrapper! {
    ///
    ///
    /// # Implements
    ///
    /// [`gst::BufferPoolExt`](../gst/trait.BufferPoolExt.html), [`gst::ObjectExt`](../gst/trait.ObjectExt.html), [`glib::object::ObjectExt`](../glib/object/trait.ObjectExt.html)
    pub struct VideoBufferPool(Object<gst_video_sys::GstVideoBufferPool, gst_video_sys::GstVideoBufferPoolClass, VideoBufferPoolClass>) @extends gst::BufferPool, gst::Object;

    match fn {
        get_type => || gst_video_sys::gst_video_buffer_pool_get_type(),
    }
}

impl VideoBufferPool {
    /// Create a new bufferpool that can allocate video frames. This bufferpool
    /// supports all the video bufferpool options.
    ///
    /// # Returns
    ///
    /// a new `gst::BufferPool` to allocate video frames
    pub fn new() -> VideoBufferPool {
        assert_initialized_main_thread!();
        unsafe {
            gst::BufferPool::from_glib_full(gst_video_sys::gst_video_buffer_pool_new())
                .unsafe_cast()
        }
    }
}

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

unsafe impl Send for VideoBufferPool {}
unsafe impl Sync for VideoBufferPool {}

pub const NONE_VIDEO_BUFFER_POOL: Option<&VideoBufferPool> = None;