gstreamer-rs/gstreamer-video/src/auto/video_buffer_pool.rs

33 lines
880 B
Rust
Raw Normal View History

// 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::*;
2020-11-22 09:50:37 +00:00
glib::glib_wrapper! {
pub struct VideoBufferPool(Object<ffi::GstVideoBufferPool, ffi::GstVideoBufferPoolClass>) @extends gst::BufferPool, gst::Object;
match fn {
2020-11-22 09:50:37 +00:00
get_type => || ffi::gst_video_buffer_pool_get_type(),
}
}
impl VideoBufferPool {
pub fn new() -> VideoBufferPool {
assert_initialized_main_thread!();
2020-11-22 09:50:37 +00:00
unsafe { gst::BufferPool::from_glib_full(ffi::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;