gstreamer-rs/gstreamer-gl/src/auto/gl_view_convert.rs

291 lines
9.5 KiB
Rust
Raw Normal View History

2018-11-27 21:52:42 +00:00
// 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)
2018-11-27 21:52:42 +00:00
// DO NOT EDIT
use crate::{GLContext, GLStereoDownmix};
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::{boxed::Box as Box_, mem::transmute};
2018-11-27 21:52:42 +00:00
2020-12-17 22:34:53 +00:00
glib::wrapper! {
#[doc(alias = "GstGLViewConvert")]
2020-11-22 10:20:20 +00:00
pub struct GLViewConvert(Object<ffi::GstGLViewConvert, ffi::GstGLViewConvertClass>) @extends gst::Object;
2018-11-27 21:52:42 +00:00
match fn {
type_ => || ffi::gst_gl_view_convert_get_type(),
2018-11-27 21:52:42 +00:00
}
}
impl GLViewConvert {
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_gl_view_convert_new")]
2018-11-27 21:52:42 +00:00
pub fn new() -> GLViewConvert {
assert_initialized_main_thread!();
2020-11-22 10:20:20 +00:00
unsafe { from_glib_full(ffi::gst_gl_view_convert_new()) }
2018-11-27 21:52:42 +00:00
}
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_gl_view_convert_perform")]
2018-11-27 21:52:42 +00:00
pub fn perform(&self, inbuf: &gst::Buffer) -> Option<gst::Buffer> {
unsafe {
2020-11-22 10:20:20 +00:00
from_glib_full(ffi::gst_gl_view_convert_perform(
self.to_glib_none().0,
inbuf.to_glib_none().0,
))
2018-11-27 21:52:42 +00:00
}
}
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_gl_view_convert_reset")]
2018-11-27 21:52:42 +00:00
pub fn reset(&self) {
unsafe {
2020-11-22 10:20:20 +00:00
ffi::gst_gl_view_convert_reset(self.to_glib_none().0);
2018-11-27 21:52:42 +00:00
}
}
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_gl_view_convert_set_caps")]
pub fn set_caps(
&self,
in_caps: &gst::Caps,
out_caps: &gst::Caps,
) -> Result<(), glib::error::BoolError> {
2018-11-27 21:52:42 +00:00
unsafe {
2020-12-17 22:34:53 +00:00
glib::result_from_gboolean!(
2020-11-22 10:20:20 +00:00
ffi::gst_gl_view_convert_set_caps(
self.to_glib_none().0,
in_caps.to_glib_none().0,
out_caps.to_glib_none().0
),
"Failed to set caps"
)
2018-11-27 21:52:42 +00:00
}
}
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_gl_view_convert_set_context")]
pub fn set_context(&self, context: &impl IsA<GLContext>) {
2018-11-27 21:52:42 +00:00
unsafe {
2020-11-22 10:20:20 +00:00
ffi::gst_gl_view_convert_set_context(
self.to_glib_none().0,
context.as_ref().to_glib_none().0,
);
2018-11-27 21:52:42 +00:00
}
}
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_gl_view_convert_transform_caps")]
pub fn transform_caps(
&self,
direction: gst::PadDirection,
caps: &gst::Caps,
filter: &gst::Caps,
2022-01-07 13:29:28 +00:00
) -> gst::Caps {
2018-11-27 21:52:42 +00:00
unsafe {
2020-11-22 10:20:20 +00:00
from_glib_full(ffi::gst_gl_view_convert_transform_caps(
self.to_glib_none().0,
direction.into_glib(),
caps.to_glib_none().0,
filter.to_glib_none().0,
))
2018-11-27 21:52:42 +00:00
}
}
#[doc(alias = "downmix-mode")]
2021-04-11 19:38:18 +00:00
pub fn downmix_mode(&self) -> GLStereoDownmix {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self, "downmix-mode")
2018-11-27 21:52:42 +00:00
}
#[doc(alias = "downmix-mode")]
2021-04-11 19:38:18 +00:00
pub fn set_downmix_mode(&self, downmix_mode: GLStereoDownmix) {
glib::ObjectExt::set_property(self, "downmix-mode", downmix_mode)
2018-11-27 21:52:42 +00:00
}
#[doc(alias = "input-flags-override")]
2021-04-11 19:38:18 +00:00
pub fn input_flags_override(&self) -> gst_video::VideoMultiviewFlags {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self, "input-flags-override")
2018-11-27 21:52:42 +00:00
}
#[doc(alias = "input-flags-override")]
2021-04-11 19:38:18 +00:00
pub fn set_input_flags_override(&self, input_flags_override: gst_video::VideoMultiviewFlags) {
glib::ObjectExt::set_property(self, "input-flags-override", input_flags_override)
2018-11-27 21:52:42 +00:00
}
#[doc(alias = "input-mode-override")]
2021-04-11 19:38:18 +00:00
pub fn input_mode_override(&self) -> gst_video::VideoMultiviewMode {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self, "input-mode-override")
2018-11-27 21:52:42 +00:00
}
#[doc(alias = "input-mode-override")]
2021-04-11 19:38:18 +00:00
pub fn set_input_mode_override(&self, input_mode_override: gst_video::VideoMultiviewMode) {
glib::ObjectExt::set_property(self, "input-mode-override", input_mode_override)
2018-11-27 21:52:42 +00:00
}
#[doc(alias = "output-flags-override")]
2021-04-11 19:38:18 +00:00
pub fn output_flags_override(&self) -> gst_video::VideoMultiviewFlags {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self, "output-flags-override")
2018-11-27 21:52:42 +00:00
}
#[doc(alias = "output-flags-override")]
2021-04-11 19:38:18 +00:00
pub fn set_output_flags_override(&self, output_flags_override: gst_video::VideoMultiviewFlags) {
glib::ObjectExt::set_property(self, "output-flags-override", output_flags_override)
2018-11-27 21:52:42 +00:00
}
#[doc(alias = "output-mode-override")]
2021-04-11 19:38:18 +00:00
pub fn output_mode_override(&self) -> gst_video::VideoMultiviewMode {
2021-11-06 17:31:52 +00:00
glib::ObjectExt::property(self, "output-mode-override")
2018-11-27 21:52:42 +00:00
}
#[doc(alias = "output-mode-override")]
2021-04-11 19:38:18 +00:00
pub fn set_output_mode_override(&self, output_mode_override: gst_video::VideoMultiviewMode) {
glib::ObjectExt::set_property(self, "output-mode-override", output_mode_override)
2018-11-27 21:52:42 +00:00
}
#[doc(alias = "downmix-mode")]
pub fn connect_downmix_mode_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_downmix_mode_trampoline<
F: Fn(&GLViewConvert) + Send + Sync + 'static,
>(
2020-11-22 10:20:20 +00:00
this: *mut ffi::GstGLViewConvert,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
2018-11-27 21:52:42 +00:00
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::downmix-mode\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_downmix_mode_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
2018-11-27 21:52:42 +00:00
}
}
#[doc(alias = "input-flags-override")]
pub fn connect_input_flags_override_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_input_flags_override_trampoline<
F: Fn(&GLViewConvert) + Send + Sync + 'static,
>(
2020-11-22 10:20:20 +00:00
this: *mut ffi::GstGLViewConvert,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
2018-11-27 21:52:42 +00:00
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::input-flags-override\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_input_flags_override_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
2018-11-27 21:52:42 +00:00
}
}
#[doc(alias = "input-mode-override")]
pub fn connect_input_mode_override_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_input_mode_override_trampoline<
F: Fn(&GLViewConvert) + Send + Sync + 'static,
>(
2020-11-22 10:20:20 +00:00
this: *mut ffi::GstGLViewConvert,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
2018-11-27 21:52:42 +00:00
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::input-mode-override\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_input_mode_override_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
2018-11-27 21:52:42 +00:00
}
}
#[doc(alias = "output-flags-override")]
pub fn connect_output_flags_override_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_output_flags_override_trampoline<
F: Fn(&GLViewConvert) + Send + Sync + 'static,
>(
2020-11-22 10:20:20 +00:00
this: *mut ffi::GstGLViewConvert,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
2018-11-27 21:52:42 +00:00
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::output-flags-override\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_output_flags_override_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
2018-11-27 21:52:42 +00:00
}
}
#[doc(alias = "output-mode-override")]
pub fn connect_output_mode_override_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_output_mode_override_trampoline<
F: Fn(&GLViewConvert) + Send + Sync + 'static,
>(
2020-11-22 10:20:20 +00:00
this: *mut ffi::GstGLViewConvert,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
f(&from_glib_borrow(this))
}
2018-11-27 21:52:42 +00:00
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::output-mode-override\0".as_ptr() as *const _,
2020-04-13 16:11:33 +00:00
Some(transmute::<_, unsafe extern "C" fn()>(
notify_output_mode_override_trampoline::<F> as *const (),
)),
Box_::into_raw(f),
)
2018-11-27 21:52:42 +00:00
}
}
}
impl Default for GLViewConvert {
fn default() -> Self {
Self::new()
}
}
unsafe impl Send for GLViewConvert {}
unsafe impl Sync for GLViewConvert {}