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

330 lines
11 KiB
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)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
// DO NOT EDIT
2020-11-22 09:50:37 +00:00
use crate::VideoCodecFrame;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
use glib::object::Cast;
use glib::object::IsA;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
use glib::signal::connect_raw;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
use glib::signal::SignalHandlerId;
use glib::translate::*;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
use glib::StaticType;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
use std::boxed::Box as Box_;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
use std::mem::transmute;
2020-12-17 22:34:53 +00:00
glib::wrapper! {
2020-11-22 09:50:37 +00:00
pub struct VideoDecoder(Object<ffi::GstVideoDecoder, ffi::GstVideoDecoderClass>) @extends gst::Element, gst::Object;
match fn {
2020-11-22 09:50:37 +00:00
get_type => || ffi::gst_video_decoder_get_type(),
}
}
unsafe impl Send for VideoDecoder {}
unsafe impl Sync for VideoDecoder {}
pub const NONE_VIDEO_DECODER: Option<&VideoDecoder> = None;
pub trait VideoDecoderExt: 'static {
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_add_to_frame")]
fn add_to_frame(&self, n_bytes: i32);
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_allocate_output_buffer")]
fn allocate_output_buffer(&self) -> Result<gst::Buffer, glib::BoolError>;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_get_buffer_pool")]
fn get_buffer_pool(&self) -> Option<gst::BufferPool>;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_get_estimate_rate")]
fn get_estimate_rate(&self) -> i32;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_get_max_decode_time")]
fn get_max_decode_time(&self, frame: &VideoCodecFrame) -> gst::ClockTimeDiff;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_get_max_errors")]
fn get_max_errors(&self) -> i32;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_get_needs_format")]
fn get_needs_format(&self) -> bool;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_get_packetized")]
fn get_packetized(&self) -> bool;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_get_pending_frame_size")]
fn get_pending_frame_size(&self) -> usize;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_get_qos_proportion")]
fn get_qos_proportion(&self) -> f64;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_merge_tags")]
fn merge_tags(&self, tags: Option<&gst::TagList>, mode: gst::TagMergeMode);
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_proxy_getcaps")]
fn proxy_getcaps(&self, caps: Option<&gst::Caps>, filter: Option<&gst::Caps>) -> gst::Caps;
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_set_estimate_rate")]
fn set_estimate_rate(&self, enabled: bool);
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_set_max_errors")]
fn set_max_errors(&self, num: i32);
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_set_needs_format")]
fn set_needs_format(&self, enabled: bool);
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_set_packetized")]
fn set_packetized(&self, packetized: bool);
2020-12-08 13:00:17 +00:00
#[doc(alias = "gst_video_decoder_set_use_default_pad_acceptcaps")]
fn set_use_default_pad_acceptcaps(&self, use_: bool);
2020-04-30 16:51:41 +00:00
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
fn get_property_qos(&self) -> bool;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
fn set_property_qos(&self, qos: bool);
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-07-06 08:37:14 +00:00
fn connect_property_max_errors_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
fn connect_property_qos_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
}
impl<O: IsA<VideoDecoder>> VideoDecoderExt for O {
fn add_to_frame(&self, n_bytes: i32) {
unsafe {
2020-11-22 09:50:37 +00:00
ffi::gst_video_decoder_add_to_frame(self.as_ref().to_glib_none().0, n_bytes);
}
}
fn allocate_output_buffer(&self) -> Result<gst::Buffer, glib::BoolError> {
unsafe {
2020-11-22 09:50:37 +00:00
Option::<_>::from_glib_full(ffi::gst_video_decoder_allocate_output_buffer(
self.as_ref().to_glib_none().0,
))
2020-12-17 22:34:53 +00:00
.ok_or_else(|| glib::bool_error!("Failed to allocate output buffer"))
}
}
fn get_buffer_pool(&self) -> Option<gst::BufferPool> {
unsafe {
2020-11-22 09:50:37 +00:00
from_glib_full(ffi::gst_video_decoder_get_buffer_pool(
self.as_ref().to_glib_none().0,
))
}
}
fn get_estimate_rate(&self) -> i32 {
2020-11-22 09:50:37 +00:00
unsafe { ffi::gst_video_decoder_get_estimate_rate(self.as_ref().to_glib_none().0) }
}
fn get_max_decode_time(&self, frame: &VideoCodecFrame) -> gst::ClockTimeDiff {
unsafe {
2020-11-22 09:50:37 +00:00
ffi::gst_video_decoder_get_max_decode_time(
self.as_ref().to_glib_none().0,
frame.to_glib_none().0,
)
}
}
fn get_max_errors(&self) -> i32 {
2020-11-22 09:50:37 +00:00
unsafe { ffi::gst_video_decoder_get_max_errors(self.as_ref().to_glib_none().0) }
}
fn get_needs_format(&self) -> bool {
unsafe {
2020-11-22 09:50:37 +00:00
from_glib(ffi::gst_video_decoder_get_needs_format(
self.as_ref().to_glib_none().0,
))
}
}
fn get_packetized(&self) -> bool {
unsafe {
2020-11-22 09:50:37 +00:00
from_glib(ffi::gst_video_decoder_get_packetized(
self.as_ref().to_glib_none().0,
))
}
}
fn get_pending_frame_size(&self) -> usize {
2020-11-22 09:50:37 +00:00
unsafe { ffi::gst_video_decoder_get_pending_frame_size(self.as_ref().to_glib_none().0) }
}
fn get_qos_proportion(&self) -> f64 {
2020-11-22 09:50:37 +00:00
unsafe { ffi::gst_video_decoder_get_qos_proportion(self.as_ref().to_glib_none().0) }
}
fn merge_tags(&self, tags: Option<&gst::TagList>, mode: gst::TagMergeMode) {
unsafe {
2020-11-22 09:50:37 +00:00
ffi::gst_video_decoder_merge_tags(
self.as_ref().to_glib_none().0,
tags.to_glib_none().0,
mode.to_glib(),
);
}
}
fn proxy_getcaps(&self, caps: Option<&gst::Caps>, filter: Option<&gst::Caps>) -> gst::Caps {
unsafe {
2020-11-22 09:50:37 +00:00
from_glib_full(ffi::gst_video_decoder_proxy_getcaps(
self.as_ref().to_glib_none().0,
caps.to_glib_none().0,
filter.to_glib_none().0,
))
}
}
fn set_estimate_rate(&self, enabled: bool) {
unsafe {
2020-11-22 09:50:37 +00:00
ffi::gst_video_decoder_set_estimate_rate(
self.as_ref().to_glib_none().0,
enabled.to_glib(),
);
}
}
fn set_max_errors(&self, num: i32) {
unsafe {
2020-11-22 09:50:37 +00:00
ffi::gst_video_decoder_set_max_errors(self.as_ref().to_glib_none().0, num);
}
}
fn set_needs_format(&self, enabled: bool) {
unsafe {
2020-11-22 09:50:37 +00:00
ffi::gst_video_decoder_set_needs_format(
self.as_ref().to_glib_none().0,
enabled.to_glib(),
);
}
}
fn set_packetized(&self, packetized: bool) {
unsafe {
2020-11-22 09:50:37 +00:00
ffi::gst_video_decoder_set_packetized(
self.as_ref().to_glib_none().0,
packetized.to_glib(),
);
}
}
fn set_use_default_pad_acceptcaps(&self, use_: bool) {
unsafe {
2020-11-22 09:50:37 +00:00
ffi::gst_video_decoder_set_use_default_pad_acceptcaps(
self.as_ref().to_glib_none().0,
use_.to_glib(),
);
}
}
2020-04-30 16:51:41 +00:00
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
fn get_property_qos(&self) -> bool {
unsafe {
2020-11-27 13:37:24 +00:00
let mut value = glib::Value::from_type(<bool as StaticType>::static_type());
2020-11-22 09:50:37 +00:00
glib::gobject_ffi::g_object_get_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
2020-04-30 16:51:41 +00:00
b"qos\0".as_ptr() as *const _,
value.to_glib_none_mut().0,
);
value
.get()
.expect("Return Value for property `qos` getter")
.unwrap()
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
fn set_property_qos(&self, qos: bool) {
unsafe {
2020-11-22 09:50:37 +00:00
glib::gobject_ffi::g_object_set_property(
self.to_glib_none().0 as *mut glib::gobject_ffi::GObject,
2020-04-30 16:51:41 +00:00
b"qos\0".as_ptr() as *const _,
2020-11-27 13:37:24 +00:00
glib::Value::from(&qos).to_glib_none().0,
2020-04-30 16:51:41 +00:00
);
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-07-06 08:37:14 +00:00
fn connect_property_max_errors_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_max_errors_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(
2020-11-22 09:50:37 +00:00
this: *mut ffi::GstVideoDecoder,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
2020-07-06 08:37:14 +00:00
) where
P: IsA<VideoDecoder>,
{
let f: &F = &*(f as *const F);
f(&VideoDecoder::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::max-errors\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_max_errors_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
fn connect_property_qos_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_qos_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(
2020-11-22 09:50:37 +00:00
this: *mut ffi::GstVideoDecoder,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
2020-04-30 16:51:41 +00:00
) where
P: IsA<VideoDecoder>,
{
let f: &F = &*(f as *const F);
f(&VideoDecoder::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::qos\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_qos_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}