// 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::PlayAudioInfo; use crate::PlayColorBalanceType; use crate::PlayMediaInfo; use crate::PlaySubtitleInfo; use crate::PlayVideoInfo; use crate::PlayVideoRenderer; use crate::PlayVisualization; 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 = "GstPlay")] pub struct Play(Object) @extends gst::Object; match fn { type_ => || ffi::gst_play_get_type(), } } impl Play { #[doc(alias = "gst_play_new")] pub fn new(video_renderer: Option<&impl IsA>) -> Play { assert_initialized_main_thread!(); unsafe { from_glib_full(ffi::gst_play_new( video_renderer.map(|p| p.as_ref()).to_glib_full(), )) } } #[doc(alias = "gst_play_get_audio_video_offset")] #[doc(alias = "get_audio_video_offset")] pub fn audio_video_offset(&self) -> i64 { unsafe { ffi::gst_play_get_audio_video_offset(self.to_glib_none().0) } } #[doc(alias = "gst_play_get_color_balance")] #[doc(alias = "get_color_balance")] pub fn color_balance(&self, type_: PlayColorBalanceType) -> f64 { unsafe { ffi::gst_play_get_color_balance(self.to_glib_none().0, type_.into_glib()) } } #[doc(alias = "gst_play_get_current_audio_track")] #[doc(alias = "get_current_audio_track")] pub fn current_audio_track(&self) -> Option { unsafe { from_glib_full(ffi::gst_play_get_current_audio_track(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_current_subtitle_track")] #[doc(alias = "get_current_subtitle_track")] pub fn current_subtitle_track(&self) -> Option { unsafe { from_glib_full(ffi::gst_play_get_current_subtitle_track( self.to_glib_none().0, )) } } #[doc(alias = "gst_play_get_current_video_track")] #[doc(alias = "get_current_video_track")] pub fn current_video_track(&self) -> Option { unsafe { from_glib_full(ffi::gst_play_get_current_video_track(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_current_visualization")] #[doc(alias = "get_current_visualization")] pub fn current_visualization(&self) -> Option { unsafe { from_glib_full(ffi::gst_play_get_current_visualization( self.to_glib_none().0, )) } } #[doc(alias = "gst_play_get_duration")] #[doc(alias = "get_duration")] pub fn duration(&self) -> Option { unsafe { from_glib(ffi::gst_play_get_duration(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_media_info")] #[doc(alias = "get_media_info")] pub fn media_info(&self) -> Option { unsafe { from_glib_full(ffi::gst_play_get_media_info(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_message_bus")] #[doc(alias = "get_message_bus")] pub fn message_bus(&self) -> gst::Bus { unsafe { from_glib_full(ffi::gst_play_get_message_bus(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_multiview_flags")] #[doc(alias = "get_multiview_flags")] pub fn multiview_flags(&self) -> gst_video::VideoMultiviewFlags { unsafe { from_glib(ffi::gst_play_get_multiview_flags(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_multiview_mode")] #[doc(alias = "get_multiview_mode")] pub fn multiview_mode(&self) -> gst_video::VideoMultiviewFramePacking { unsafe { from_glib(ffi::gst_play_get_multiview_mode(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_mute")] #[doc(alias = "get_mute")] pub fn is_muted(&self) -> bool { unsafe { from_glib(ffi::gst_play_get_mute(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_pipeline")] #[doc(alias = "get_pipeline")] pub fn pipeline(&self) -> gst::Element { unsafe { from_glib_full(ffi::gst_play_get_pipeline(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_position")] #[doc(alias = "get_position")] pub fn position(&self) -> Option { unsafe { from_glib(ffi::gst_play_get_position(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_rate")] #[doc(alias = "get_rate")] pub fn rate(&self) -> f64 { unsafe { ffi::gst_play_get_rate(self.to_glib_none().0) } } #[doc(alias = "gst_play_get_subtitle_uri")] #[doc(alias = "get_subtitle_uri")] pub fn subtitle_uri(&self) -> Option { unsafe { from_glib_full(ffi::gst_play_get_subtitle_uri(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_subtitle_video_offset")] #[doc(alias = "get_subtitle_video_offset")] pub fn subtitle_video_offset(&self) -> i64 { unsafe { ffi::gst_play_get_subtitle_video_offset(self.to_glib_none().0) } } #[doc(alias = "gst_play_get_uri")] #[doc(alias = "get_uri")] pub fn uri(&self) -> Option { unsafe { from_glib_full(ffi::gst_play_get_uri(self.to_glib_none().0)) } } #[doc(alias = "gst_play_get_volume")] #[doc(alias = "get_volume")] pub fn volume(&self) -> f64 { unsafe { ffi::gst_play_get_volume(self.to_glib_none().0) } } #[doc(alias = "gst_play_has_color_balance")] pub fn has_color_balance(&self) -> bool { unsafe { from_glib(ffi::gst_play_has_color_balance(self.to_glib_none().0)) } } #[doc(alias = "gst_play_pause")] pub fn pause(&self) { unsafe { ffi::gst_play_pause(self.to_glib_none().0); } } #[doc(alias = "gst_play_play")] pub fn play(&self) { unsafe { ffi::gst_play_play(self.to_glib_none().0); } } #[doc(alias = "gst_play_seek")] pub fn seek(&self, position: gst::ClockTime) { unsafe { ffi::gst_play_seek(self.to_glib_none().0, position.into_glib()); } } #[doc(alias = "gst_play_set_audio_track")] pub fn set_audio_track(&self, stream_index: i32) -> Result<(), glib::error::BoolError> { unsafe { glib::result_from_gboolean!( ffi::gst_play_set_audio_track(self.to_glib_none().0, stream_index), "Failed to set audio track" ) } } #[doc(alias = "gst_play_set_audio_track_enabled")] pub fn set_audio_track_enabled(&self, enabled: bool) { unsafe { ffi::gst_play_set_audio_track_enabled(self.to_glib_none().0, enabled.into_glib()); } } #[doc(alias = "gst_play_set_audio_video_offset")] pub fn set_audio_video_offset(&self, offset: i64) { unsafe { ffi::gst_play_set_audio_video_offset(self.to_glib_none().0, offset); } } #[doc(alias = "gst_play_set_color_balance")] pub fn set_color_balance(&self, type_: PlayColorBalanceType, value: f64) { unsafe { ffi::gst_play_set_color_balance(self.to_glib_none().0, type_.into_glib(), value); } } #[doc(alias = "gst_play_set_multiview_flags")] pub fn set_multiview_flags(&self, flags: gst_video::VideoMultiviewFlags) { unsafe { ffi::gst_play_set_multiview_flags(self.to_glib_none().0, flags.into_glib()); } } #[doc(alias = "gst_play_set_multiview_mode")] pub fn set_multiview_mode(&self, mode: gst_video::VideoMultiviewFramePacking) { unsafe { ffi::gst_play_set_multiview_mode(self.to_glib_none().0, mode.into_glib()); } } #[doc(alias = "gst_play_set_mute")] pub fn set_mute(&self, val: bool) { unsafe { ffi::gst_play_set_mute(self.to_glib_none().0, val.into_glib()); } } #[doc(alias = "gst_play_set_rate")] pub fn set_rate(&self, rate: f64) { unsafe { ffi::gst_play_set_rate(self.to_glib_none().0, rate); } } #[doc(alias = "gst_play_set_subtitle_track")] pub fn set_subtitle_track(&self, stream_index: i32) -> Result<(), glib::error::BoolError> { unsafe { glib::result_from_gboolean!( ffi::gst_play_set_subtitle_track(self.to_glib_none().0, stream_index), "Failed to set subtitle track" ) } } #[doc(alias = "gst_play_set_subtitle_track_enabled")] pub fn set_subtitle_track_enabled(&self, enabled: bool) { unsafe { ffi::gst_play_set_subtitle_track_enabled(self.to_glib_none().0, enabled.into_glib()); } } #[doc(alias = "gst_play_set_subtitle_uri")] pub fn set_subtitle_uri(&self, uri: Option<&str>) { unsafe { ffi::gst_play_set_subtitle_uri(self.to_glib_none().0, uri.to_glib_none().0); } } #[doc(alias = "gst_play_set_subtitle_video_offset")] pub fn set_subtitle_video_offset(&self, offset: i64) { unsafe { ffi::gst_play_set_subtitle_video_offset(self.to_glib_none().0, offset); } } #[doc(alias = "gst_play_set_uri")] pub fn set_uri(&self, uri: Option<&str>) { unsafe { ffi::gst_play_set_uri(self.to_glib_none().0, uri.to_glib_none().0); } } #[doc(alias = "gst_play_set_video_track")] pub fn set_video_track(&self, stream_index: i32) -> Result<(), glib::error::BoolError> { unsafe { glib::result_from_gboolean!( ffi::gst_play_set_video_track(self.to_glib_none().0, stream_index), "Failed to set video track" ) } } #[doc(alias = "gst_play_set_video_track_enabled")] pub fn set_video_track_enabled(&self, enabled: bool) { unsafe { ffi::gst_play_set_video_track_enabled(self.to_glib_none().0, enabled.into_glib()); } } #[doc(alias = "gst_play_set_visualization")] pub fn set_visualization(&self, name: Option<&str>) -> Result<(), glib::error::BoolError> { unsafe { glib::result_from_gboolean!( ffi::gst_play_set_visualization(self.to_glib_none().0, name.to_glib_none().0), "Failed to set visualization" ) } } #[doc(alias = "gst_play_set_visualization_enabled")] pub fn set_visualization_enabled(&self, enabled: bool) { unsafe { ffi::gst_play_set_visualization_enabled(self.to_glib_none().0, enabled.into_glib()); } } #[doc(alias = "gst_play_set_volume")] pub fn set_volume(&self, val: f64) { unsafe { ffi::gst_play_set_volume(self.to_glib_none().0, val); } } #[doc(alias = "gst_play_stop")] pub fn stop(&self) { unsafe { ffi::gst_play_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 = "video-renderer")] pub fn set_video_renderer>(&self, video_renderer: Option<&P>) { glib::ObjectExt::set_property(self, "video-renderer", &video_renderer) } #[doc(alias = "gst_play_get_audio_streams")] #[doc(alias = "get_audio_streams")] pub fn audio_streams(info: &PlayMediaInfo) -> Vec { skip_assert_initialized!(); unsafe { FromGlibPtrContainer::from_glib_none(ffi::gst_play_get_audio_streams( info.to_glib_none().0, )) } } #[doc(alias = "gst_play_get_subtitle_streams")] #[doc(alias = "get_subtitle_streams")] pub fn subtitle_streams(info: &PlayMediaInfo) -> Vec { skip_assert_initialized!(); unsafe { FromGlibPtrContainer::from_glib_none(ffi::gst_play_get_subtitle_streams( info.to_glib_none().0, )) } } #[doc(alias = "gst_play_get_video_streams")] #[doc(alias = "get_video_streams")] pub fn video_streams(info: &PlayMediaInfo) -> Vec { skip_assert_initialized!(); unsafe { FromGlibPtrContainer::from_glib_none(ffi::gst_play_get_video_streams( info.to_glib_none().0, )) } } #[doc(alias = "gst_play_is_play_message")] pub fn is_play_message(msg: &gst::Message) -> bool { assert_initialized_main_thread!(); unsafe { from_glib(ffi::gst_play_is_play_message(msg.to_glib_none().0)) } } #[doc(alias = "gst_play_visualizations_get")] pub fn visualizations_get() -> Vec { assert_initialized_main_thread!(); unsafe { FromGlibPtrContainer::from_glib_full(ffi::gst_play_visualizations_get()) } } #[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(&Play) + Send + Sync + 'static, >( this: *mut ffi::GstPlay, _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(&Play) + Send + Sync + 'static, >( this: *mut ffi::GstPlay, _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(&Play) + Send + Sync + 'static, >( this: *mut ffi::GstPlay, _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(&Play) + Send + Sync + 'static, >( this: *mut ffi::GstPlay, _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::GstPlay, _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( this: *mut ffi::GstPlay, _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::GstPlay, _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::GstPlay, _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::GstPlay, _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::GstPlay, _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), ) } } #[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(&Play) + Send + Sync + 'static, >( this: *mut ffi::GstPlay, _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::GstPlay, _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::GstPlay, _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(&Play) + Send + Sync + 'static, >( this: *mut ffi::GstPlay, _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(&Play) + Send + Sync + 'static, >( this: *mut ffi::GstPlay, _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 = "video-renderer")] pub fn connect_video_renderer_notify( &self, f: F, ) -> SignalHandlerId { unsafe extern "C" fn notify_video_renderer_trampoline< F: Fn(&Play) + Send + Sync + 'static, >( this: *mut ffi::GstPlay, _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-renderer\0".as_ptr() as *const _, Some(transmute::<_, unsafe extern "C" fn()>( notify_video_renderer_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::GstPlay, _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 Play {} unsafe impl Sync for Play {}