// 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::DiscovererInfo; #[cfg(any(feature = "v1_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))] use glib::object::Cast; use glib::object::IsA; #[cfg(any(feature = "v1_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))] use glib::signal::connect_raw; #[cfg(any(feature = "v1_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))] use glib::signal::SignalHandlerId; use glib::translate::*; #[cfg(any(feature = "v1_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))] use std::boxed::Box as Box_; #[cfg(any(feature = "v1_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))] use std::mem::transmute; glib::wrapper! { #[doc(alias = "GstEncodingProfile")] pub struct EncodingProfile(Object); match fn { type_ => || ffi::gst_encoding_profile_get_type(), } } impl EncodingProfile { pub const NONE: Option<&'static EncodingProfile> = None; #[doc(alias = "gst_encoding_profile_find")] pub fn find( targetname: &str, profilename: Option<&str>, category: Option<&str>, ) -> Option { assert_initialized_main_thread!(); unsafe { from_glib_full(ffi::gst_encoding_profile_find( targetname.to_glib_none().0, profilename.to_glib_none().0, category.to_glib_none().0, )) } } #[doc(alias = "gst_encoding_profile_from_discoverer")] pub fn from_discoverer(info: &DiscovererInfo) -> Result { skip_assert_initialized!(); unsafe { Option::<_>::from_glib_full(ffi::gst_encoding_profile_from_discoverer( info.to_glib_none().0, )) .ok_or_else(|| { glib::bool_error!("Failed to create EncodingProfile from DiscovererInfo") }) } } } unsafe impl Send for EncodingProfile {} unsafe impl Sync for EncodingProfile {} pub trait EncodingProfileExt: 'static { #[cfg(any(feature = "v1_12", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_12")))] #[doc(alias = "gst_encoding_profile_copy")] #[must_use] fn copy(&self) -> EncodingProfile; #[doc(alias = "gst_encoding_profile_get_allow_dynamic_output")] #[doc(alias = "get_allow_dynamic_output")] fn allows_dynamic_output(&self) -> bool; #[doc(alias = "gst_encoding_profile_get_description")] #[doc(alias = "get_description")] fn description(&self) -> Option; #[cfg(any(feature = "v1_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))] #[doc(alias = "gst_encoding_profile_get_element_properties")] #[doc(alias = "get_element_properties")] fn element_properties(&self) -> Option; #[doc(alias = "gst_encoding_profile_get_file_extension")] #[doc(alias = "get_file_extension")] fn file_extension(&self) -> Option; #[doc(alias = "gst_encoding_profile_get_format")] #[doc(alias = "get_format")] fn format(&self) -> gst::Caps; #[doc(alias = "gst_encoding_profile_get_input_caps")] #[doc(alias = "get_input_caps")] fn input_caps(&self) -> gst::Caps; #[doc(alias = "gst_encoding_profile_get_name")] #[doc(alias = "get_name")] fn name(&self) -> Option; #[doc(alias = "gst_encoding_profile_get_presence")] #[doc(alias = "get_presence")] fn presence(&self) -> u32; #[doc(alias = "gst_encoding_profile_get_preset")] #[doc(alias = "get_preset")] fn preset(&self) -> Option; #[doc(alias = "gst_encoding_profile_get_preset_name")] #[doc(alias = "get_preset_name")] fn preset_name(&self) -> Option; #[cfg(any(feature = "v1_18", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))] #[doc(alias = "gst_encoding_profile_get_single_segment")] #[doc(alias = "get_single_segment")] fn is_single_segment(&self) -> bool; #[doc(alias = "gst_encoding_profile_get_type_nick")] #[doc(alias = "get_type_nick")] fn type_nick(&self) -> Option; #[doc(alias = "gst_encoding_profile_is_enabled")] fn is_enabled(&self) -> bool; #[doc(alias = "gst_encoding_profile_is_equal")] fn is_equal(&self, b: &impl IsA) -> bool; #[cfg(any(feature = "v1_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))] #[doc(alias = "element-properties")] fn connect_element_properties_notify( &self, f: F, ) -> SignalHandlerId; } impl> EncodingProfileExt for O { #[cfg(any(feature = "v1_12", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_12")))] fn copy(&self) -> EncodingProfile { unsafe { from_glib_full(ffi::gst_encoding_profile_copy( self.as_ref().to_glib_none().0, )) } } fn allows_dynamic_output(&self) -> bool { unsafe { from_glib(ffi::gst_encoding_profile_get_allow_dynamic_output( self.as_ref().to_glib_none().0, )) } } fn description(&self) -> Option { unsafe { from_glib_none(ffi::gst_encoding_profile_get_description( self.as_ref().to_glib_none().0, )) } } #[cfg(any(feature = "v1_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))] fn element_properties(&self) -> Option { unsafe { from_glib_full(ffi::gst_encoding_profile_get_element_properties( self.as_ref().to_glib_none().0, )) } } fn file_extension(&self) -> Option { unsafe { from_glib_none(ffi::gst_encoding_profile_get_file_extension( self.as_ref().to_glib_none().0, )) } } fn format(&self) -> gst::Caps { unsafe { from_glib_full(ffi::gst_encoding_profile_get_format( self.as_ref().to_glib_none().0, )) } } fn input_caps(&self) -> gst::Caps { unsafe { from_glib_full(ffi::gst_encoding_profile_get_input_caps( self.as_ref().to_glib_none().0, )) } } fn name(&self) -> Option { unsafe { from_glib_none(ffi::gst_encoding_profile_get_name( self.as_ref().to_glib_none().0, )) } } fn presence(&self) -> u32 { unsafe { ffi::gst_encoding_profile_get_presence(self.as_ref().to_glib_none().0) } } fn preset(&self) -> Option { unsafe { from_glib_none(ffi::gst_encoding_profile_get_preset( self.as_ref().to_glib_none().0, )) } } fn preset_name(&self) -> Option { unsafe { from_glib_none(ffi::gst_encoding_profile_get_preset_name( self.as_ref().to_glib_none().0, )) } } #[cfg(any(feature = "v1_18", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))] fn is_single_segment(&self) -> bool { unsafe { from_glib(ffi::gst_encoding_profile_get_single_segment( self.as_ref().to_glib_none().0, )) } } fn type_nick(&self) -> Option { unsafe { from_glib_none(ffi::gst_encoding_profile_get_type_nick( self.as_ref().to_glib_none().0, )) } } fn is_enabled(&self) -> bool { unsafe { from_glib(ffi::gst_encoding_profile_is_enabled( self.as_ref().to_glib_none().0, )) } } fn is_equal(&self, b: &impl IsA) -> bool { unsafe { from_glib(ffi::gst_encoding_profile_is_equal( self.as_ref().to_glib_none().0, b.as_ref().to_glib_none().0, )) } } #[cfg(any(feature = "v1_20", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_20")))] fn connect_element_properties_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_element_properties_trampoline< P: IsA, F: Fn(&P) + Send + Sync + 'static, >( this: *mut ffi::GstEncodingProfile, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(EncodingProfile::from_glib_borrow(this).unsafe_cast_ref()) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::element-properties\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_element_properties_trampoline:: as *const (), )), Box_::into_raw(f), ) } } }