// 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::PlayerAudioInfo; use crate::PlayerColorBalanceType; use crate::PlayerMediaInfo; use crate::PlayerSignalDispatcher; use crate::PlayerState; use crate::PlayerSubtitleInfo; use crate::PlayerVideoInfo; use crate::PlayerVideoRenderer; use crate::PlayerVisualization; use glib::object::IsA; use glib::object::ObjectType as ObjectType_; use glib::signal::connect_raw; use glib::signal::SignalHandlerId; use glib::translate::*; use glib::StaticType; use glib::ToValue; use std::boxed::Box as Box_; use std::mem::transmute; glib::wrapper! { #[doc(alias = "GstPlayer")] pub struct Player(Object) @extends gst::Object; match fn { type_ => || ffi::gst_player_get_type(), } } impl Player { #[doc(alias = "gst_player_new")] pub fn new( video_renderer: Option<&impl IsA>, signal_dispatcher: Option<&impl IsA>, ) -> Player { assert_initialized_main_thread!(); unsafe { from_glib_full(ffi::gst_player_new( video_renderer.map(|p| p.as_ref()).to_glib_full(), signal_dispatcher.map(|p| p.as_ref()).to_glib_full(), )) } } #[doc(alias = "gst_player_get_audio_video_offset")] #[doc(alias = "get_audio_video_offset")] pub fn audio_video_offset(&self) -> i64 { unsafe { ffi::gst_player_get_audio_video_offset(self.to_glib_none().0) } } #[doc(alias = "gst_player_get_color_balance")] #[doc(alias = "get_color_balance")] pub fn color_balance(&self, type_: PlayerColorBalanceType) -> f64 { unsafe { ffi::gst_player_get_color_balance(self.to_glib_none().0, type_.into_glib()) } } #[doc(alias = "gst_player_get_current_audio_track")] #[doc(alias = "get_current_audio_track")] pub fn current_audio_track(&self) -> Option { unsafe { from_glib_full(ffi::gst_player_get_current_audio_track( self.to_glib_none().0, )) } } #[doc(alias = "gst_player_get_current_subtitle_track")] #[doc(alias = "get_current_subtitle_track")] pub fn current_subtitle_track(&self) -> Option { unsafe { from_glib_full(ffi::gst_player_get_current_subtitle_track( self.to_glib_none().0, )) } } #[doc(alias = "gst_player_get_current_video_track")] #[doc(alias = "get_current_video_track")] pub fn current_video_track(&self) -> Option { unsafe { from_glib_full(ffi::gst_player_get_current_video_track( self.to_glib_none().0, )) } } #[doc(alias = "gst_player_get_current_visualization")] #[doc(alias = "get_current_visualization")] pub fn current_visualization(&self) -> Option { unsafe { from_glib_full(ffi::gst_player_get_current_visualization( self.to_glib_none().0, )) } } #[doc(alias = "gst_player_get_duration")] #[doc(alias = "get_duration")] pub fn duration(&self) -> Option { unsafe { from_glib(ffi::gst_player_get_duration(self.to_glib_none().0)) } } #[doc(alias = "gst_player_get_media_info")] #[doc(alias = "get_media_info")] pub fn media_info(&self) -> Option { unsafe { from_glib_full(ffi::gst_player_get_media_info(self.to_glib_none().0)) } } #[doc(alias = "gst_player_get_multiview_flags")] #[doc(alias = "get_multiview_flags")] pub fn multiview_flags(&self) -> gst_video::VideoMultiviewFlags { unsafe { from_glib(ffi::gst_player_get_multiview_flags(self.to_glib_none().0)) } } #[doc(alias = "gst_player_get_multiview_mode")] #[doc(alias = "get_multiview_mode")] pub fn multiview_mode(&self) -> gst_video::VideoMultiviewFramePacking { unsafe { from_glib(ffi::gst_player_get_multiview_mode(self.to_glib_none().0)) } } #[doc(alias = "gst_player_get_mute")] #[doc(alias = "get_mute")] pub fn is_muted(&self) -> bool { unsafe { from_glib(ffi::gst_player_get_mute(self.to_glib_none().0)) } } #[doc(alias = "gst_player_get_pipeline")] #[doc(alias = "get_pipeline")] pub fn pipeline(&self) -> gst::Element { unsafe { from_glib_full(ffi::gst_player_get_pipeline(self.to_glib_none().0)) } } #[doc(alias = "gst_player_get_position")] #[doc(alias = "get_position")] pub fn position(&self) -> Option { unsafe { from_glib(ffi::gst_player_get_position(self.to_glib_none().0)) } } #[doc(alias = "gst_player_get_rate")] #[doc(alias = "get_rate")] pub fn rate(&self) -> f64 { unsafe { ffi::gst_player_get_rate(self.to_glib_none().0) } } #[doc(alias = "gst_player_get_subtitle_uri")] #[doc(alias = "get_subtitle_uri")] pub fn subtitle_uri(&self) -> Option { unsafe { from_glib_full(ffi::gst_player_get_subtitle_uri(self.to_glib_none().0)) } } #[cfg(any(feature = "v1_16", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))] #[doc(alias = "gst_player_get_subtitle_video_offset")] #[doc(alias = "get_subtitle_video_offset")] pub fn subtitle_video_offset(&self) -> i64 { unsafe { ffi::gst_player_get_subtitle_video_offset(self.to_glib_none().0) } } #[doc(alias = "gst_player_get_uri")] #[doc(alias = "get_uri")] pub fn uri(&self) -> Option { unsafe { from_glib_full(ffi::gst_player_get_uri(self.to_glib_none().0)) } } #[doc(alias = "gst_player_get_volume")] #[doc(alias = "get_volume")] pub fn volume(&self) -> f64 { unsafe { ffi::gst_player_get_volume(self.to_glib_none().0) } } #[doc(alias = "gst_player_has_color_balance")] pub fn has_color_balance(&self) -> bool { unsafe { from_glib(ffi::gst_player_has_color_balance(self.to_glib_none().0)) } } #[doc(alias = "gst_player_pause")] pub fn pause(&self) { unsafe { ffi::gst_player_pause(self.to_glib_none().0); } } #[doc(alias = "gst_player_play")] pub fn play(&self) { unsafe { ffi::gst_player_play(self.to_glib_none().0); } } #[doc(alias = "gst_player_seek")] pub fn seek(&self, position: gst::ClockTime) { unsafe { ffi::gst_player_seek(self.to_glib_none().0, position.into_glib()); } } #[doc(alias = "gst_player_set_audio_track")] pub fn set_audio_track(&self, stream_index: i32) -> Result<(), glib::error::BoolError> { unsafe { glib::result_from_gboolean!( ffi::gst_player_set_audio_track(self.to_glib_none().0, stream_index), "Failed to set audio track" ) } } #[doc(alias = "gst_player_set_audio_track_enabled")] pub fn set_audio_track_enabled(&self, enabled: bool) { unsafe { ffi::gst_player_set_audio_track_enabled(self.to_glib_none().0, enabled.into_glib()); } } #[doc(alias = "gst_player_set_audio_video_offset")] pub fn set_audio_video_offset(&self, offset: i64) { unsafe { ffi::gst_player_set_audio_video_offset(self.to_glib_none().0, offset); } } #[doc(alias = "gst_player_set_color_balance")] pub fn set_color_balance(&self, type_: PlayerColorBalanceType, value: f64) { unsafe { ffi::gst_player_set_color_balance(self.to_glib_none().0, type_.into_glib(), value); } } #[doc(alias = "gst_player_set_multiview_flags")] pub fn set_multiview_flags(&self, flags: gst_video::VideoMultiviewFlags) { unsafe { ffi::gst_player_set_multiview_flags(self.to_glib_none().0, flags.into_glib()); } } #[doc(alias = "gst_player_set_multiview_mode")] pub fn set_multiview_mode(&self, mode: gst_video::VideoMultiviewFramePacking) { unsafe { ffi::gst_player_set_multiview_mode(self.to_glib_none().0, mode.into_glib()); } } #[doc(alias = "gst_player_set_mute")] pub fn set_mute(&self, val: bool) { unsafe { ffi::gst_player_set_mute(self.to_glib_none().0, val.into_glib()); } } #[doc(alias = "gst_player_set_rate")] pub fn set_rate(&self, rate: f64) { unsafe { ffi::gst_player_set_rate(self.to_glib_none().0, rate); } } #[doc(alias = "gst_player_set_subtitle_track")] pub fn set_subtitle_track(&self, stream_index: i32) -> Result<(), glib::error::BoolError> { unsafe { glib::result_from_gboolean!( ffi::gst_player_set_subtitle_track(self.to_glib_none().0, stream_index), "Failed to set subtitle track" ) } } #[doc(alias = "gst_player_set_subtitle_track_enabled")] pub fn set_subtitle_track_enabled(&self, enabled: bool) { unsafe { ffi::gst_player_set_subtitle_track_enabled(self.to_glib_none().0, enabled.into_glib()); } } #[doc(alias = "gst_player_set_subtitle_uri")] pub fn set_subtitle_uri(&self, uri: Option<&str>) { unsafe { ffi::gst_player_set_subtitle_uri(self.to_glib_none().0, uri.to_glib_none().0); } } #[cfg(any(feature = "v1_16", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))] #[doc(alias = "gst_player_set_subtitle_video_offset")] pub fn set_subtitle_video_offset(&self, offset: i64) { unsafe { ffi::gst_player_set_subtitle_video_offset(self.to_glib_none().0, offset); } } #[doc(alias = "gst_player_set_uri")] pub fn set_uri(&self, uri: Option<&str>) { unsafe { ffi::gst_player_set_uri(self.to_glib_none().0, uri.to_glib_none().0); } } #[doc(alias = "gst_player_set_video_track")] pub fn set_video_track(&self, stream_index: i32) -> Result<(), glib::error::BoolError> { unsafe { glib::result_from_gboolean!( ffi::gst_player_set_video_track(self.to_glib_none().0, stream_index), "Failed to set video track" ) } } #[doc(alias = "gst_player_set_video_track_enabled")] pub fn set_video_track_enabled(&self, enabled: bool) { unsafe { ffi::gst_player_set_video_track_enabled(self.to_glib_none().0, enabled.into_glib()); } } #[doc(alias = "gst_player_set_visualization")] pub fn set_visualization(&self, name: Option<&str>) -> Result<(), glib::error::BoolError> { unsafe { glib::result_from_gboolean!( ffi::gst_player_set_visualization(self.to_glib_none().0, name.to_glib_none().0), "Failed to set visualization" ) } } #[doc(alias = "gst_player_set_visualization_enabled")] pub fn set_visualization_enabled(&self, enabled: bool) { unsafe { ffi::gst_player_set_visualization_enabled(self.to_glib_none().0, enabled.into_glib()); } } #[doc(alias = "gst_player_set_volume")] pub fn set_volume(&self, val: f64) { unsafe { ffi::gst_player_set_volume(self.to_glib_none().0, val); } } #[doc(alias = "gst_player_stop")] pub fn stop(&self) { unsafe { ffi::gst_player_stop(self.to_glib_none().0); } } pub fn suburi(&self) -> Option { glib::ObjectExt::property(self, "suburi") } pub fn set_suburi(&self, suburi: Option<&str>) { glib::ObjectExt::set_property(self, "suburi", &suburi) } #[doc(alias = "video-multiview-flags")] pub fn video_multiview_flags(&self) -> gst_video::VideoMultiviewFlags { glib::ObjectExt::property(self, "video-multiview-flags") } #[doc(alias = "video-multiview-flags")] pub fn set_video_multiview_flags(&self, video_multiview_flags: gst_video::VideoMultiviewFlags) { glib::ObjectExt::set_property(self, "video-multiview-flags", &video_multiview_flags) } #[doc(alias = "video-multiview-mode")] pub fn video_multiview_mode(&self) -> gst_video::VideoMultiviewFramePacking { glib::ObjectExt::property(self, "video-multiview-mode") } #[doc(alias = "video-multiview-mode")] pub fn set_video_multiview_mode( &self, video_multiview_mode: gst_video::VideoMultiviewFramePacking, ) { glib::ObjectExt::set_property(self, "video-multiview-mode", &video_multiview_mode) } #[doc(alias = "video-renderer")] pub fn video_renderer(&self) -> Option { glib::ObjectExt::property(self, "video-renderer") } #[doc(alias = "gst_player_get_audio_streams")] #[doc(alias = "get_audio_streams")] pub fn audio_streams(info: &PlayerMediaInfo) -> Vec { skip_assert_initialized!(); unsafe { FromGlibPtrContainer::from_glib_none(ffi::gst_player_get_audio_streams( info.to_glib_none().0, )) } } #[doc(alias = "gst_player_get_subtitle_streams")] #[doc(alias = "get_subtitle_streams")] pub fn subtitle_streams(info: &PlayerMediaInfo) -> Vec { skip_assert_initialized!(); unsafe { FromGlibPtrContainer::from_glib_none(ffi::gst_player_get_subtitle_streams( info.to_glib_none().0, )) } } #[doc(alias = "gst_player_get_video_streams")] #[doc(alias = "get_video_streams")] pub fn video_streams(info: &PlayerMediaInfo) -> Vec { skip_assert_initialized!(); unsafe { FromGlibPtrContainer::from_glib_none(ffi::gst_player_get_video_streams( info.to_glib_none().0, )) } } #[doc(alias = "gst_player_visualizations_get")] pub fn visualizations_get() -> Vec { assert_initialized_main_thread!(); unsafe { FromGlibPtrContainer::from_glib_full(ffi::gst_player_visualizations_get()) } } #[doc(alias = "buffering")] pub fn connect_buffering(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn buffering_trampoline( this: *mut ffi::GstPlayer, object: libc::c_int, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this), object) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"buffering\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( buffering_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "end-of-stream")] pub fn connect_end_of_stream(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn end_of_stream_trampoline( this: *mut ffi::GstPlayer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"end-of-stream\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( end_of_stream_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "error")] pub fn connect_error( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn error_trampoline( this: *mut ffi::GstPlayer, object: *mut glib::ffi::GError, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this), &from_glib_borrow(object)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"error\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( error_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "media-info-updated")] pub fn connect_media_info_updated( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn media_info_updated_trampoline< F: Fn(&Player, &PlayerMediaInfo) + Send + 'static, >( this: *mut ffi::GstPlayer, object: *mut ffi::GstPlayerMediaInfo, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this), &from_glib_borrow(object)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"media-info-updated\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( media_info_updated_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "mute-changed")] pub fn connect_mute_changed(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn mute_changed_trampoline( this: *mut ffi::GstPlayer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"mute-changed\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( mute_changed_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "state-changed")] pub fn connect_state_changed( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn state_changed_trampoline< F: Fn(&Player, PlayerState) + Send + 'static, >( this: *mut ffi::GstPlayer, object: ffi::GstPlayerState, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this), from_glib(object)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"state-changed\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( state_changed_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "uri-loaded")] pub fn connect_uri_loaded(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn uri_loaded_trampoline( this: *mut ffi::GstPlayer, object: *mut libc::c_char, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f( &from_glib_borrow(this), &glib::GString::from_glib_borrow(object), ) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"uri-loaded\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( uri_loaded_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "video-dimensions-changed")] pub fn connect_video_dimensions_changed( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn video_dimensions_changed_trampoline< F: Fn(&Player, i32, i32) + Send + 'static, >( this: *mut ffi::GstPlayer, object: libc::c_int, p0: libc::c_int, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this), object, p0) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"video-dimensions-changed\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( video_dimensions_changed_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "volume-changed")] pub fn connect_volume_changed(&self, f: F) -> SignalHandlerId { unsafe extern "C" fn volume_changed_trampoline( this: *mut ffi::GstPlayer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"volume-changed\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( volume_changed_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "warning")] pub fn connect_warning( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn warning_trampoline( this: *mut ffi::GstPlayer, object: *mut glib::ffi::GError, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this), &from_glib_borrow(object)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"warning\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( warning_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "audio-video-offset")] pub fn connect_audio_video_offset_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_audio_video_offset_trampoline< F: Fn(&Player) + Send + Sync + 'static, >( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::audio-video-offset\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_audio_video_offset_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "current-audio-track")] pub fn connect_current_audio_track_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_current_audio_track_trampoline< F: Fn(&Player) + Send + Sync + 'static, >( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::current-audio-track\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_current_audio_track_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "current-subtitle-track")] pub fn connect_current_subtitle_track_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_current_subtitle_track_trampoline< F: Fn(&Player) + Send + Sync + 'static, >( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::current-subtitle-track\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_current_subtitle_track_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "current-video-track")] pub fn connect_current_video_track_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_current_video_track_trampoline< F: Fn(&Player) + Send + Sync + 'static, >( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::current-video-track\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_current_video_track_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "duration")] pub fn connect_duration_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_duration_trampoline( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::duration\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_duration_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "media-info")] pub fn connect_media_info_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_media_info_trampoline< F: Fn(&Player) + Send + Sync + 'static, >( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::media-info\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_media_info_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "mute")] pub fn connect_mute_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_mute_trampoline( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::mute\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_mute_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "pipeline")] pub fn connect_pipeline_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_pipeline_trampoline( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::pipeline\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_pipeline_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "position")] pub fn connect_position_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_position_trampoline( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::position\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_position_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "rate")] pub fn connect_rate_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_rate_trampoline( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::rate\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_rate_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[cfg(any(feature = "v1_16", feature = "dox"))] #[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))] #[doc(alias = "subtitle-video-offset")] pub fn connect_subtitle_video_offset_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_subtitle_video_offset_trampoline< F: Fn(&Player) + Send + Sync + 'static, >( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::subtitle-video-offset\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_subtitle_video_offset_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "suburi")] pub fn connect_suburi_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_suburi_trampoline( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::suburi\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_suburi_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "uri")] pub fn connect_uri_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_uri_trampoline( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::uri\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_uri_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "video-multiview-flags")] pub fn connect_video_multiview_flags_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_video_multiview_flags_trampoline< F: Fn(&Player) + Send + Sync + 'static, >( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::video-multiview-flags\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_video_multiview_flags_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "video-multiview-mode")] pub fn connect_video_multiview_mode_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_video_multiview_mode_trampoline< F: Fn(&Player) + Send + Sync + 'static, >( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::video-multiview-mode\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_video_multiview_mode_trampoline:: as *const (), )), Box_::into_raw(f), ) } } #[doc(alias = "volume")] pub fn connect_volume_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_volume_trampoline( this: *mut ffi::GstPlayer, _param_spec: glib::ffi::gpointer, f: glib::ffi::gpointer, ) { let f: &F = &*(f as *const F); f(&from_glib_borrow(this)) } unsafe { let f: Box_ = Box_::new(f); connect_raw( self.as_ptr() as *mut _, b"notify::volume\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_volume_trampoline:: as *const (), )), Box_::into_raw(f), ) } } } unsafe impl Send for Player {} unsafe impl Sync for Player {}