2018-04-23 17:34:22 +00:00
|
|
|
// This file was generated by gir (https://github.com/gtk-rs/gir)
|
|
|
|
// from gir-files (https://github.com/gtk-rs/gir-files)
|
2017-08-01 12:36:39 +00:00
|
|
|
// DO NOT EDIT
|
|
|
|
|
|
|
|
use Error;
|
|
|
|
use PlayerAudioInfo;
|
|
|
|
use PlayerColorBalanceType;
|
|
|
|
use PlayerMediaInfo;
|
|
|
|
use PlayerSnapshotFormat;
|
|
|
|
use PlayerState;
|
|
|
|
use PlayerSubtitleInfo;
|
|
|
|
use PlayerVideoInfo;
|
|
|
|
use PlayerVisualization;
|
|
|
|
use ffi;
|
2017-12-16 09:18:00 +00:00
|
|
|
use glib;
|
2017-11-27 17:16:34 +00:00
|
|
|
use glib::StaticType;
|
2017-08-01 12:36:39 +00:00
|
|
|
use glib::Value;
|
2017-09-09 13:01:32 +00:00
|
|
|
use glib::signal::SignalHandlerId;
|
2017-08-01 12:36:39 +00:00
|
|
|
use glib::signal::connect;
|
|
|
|
use glib::translate::*;
|
|
|
|
use glib_ffi;
|
|
|
|
use gobject_ffi;
|
|
|
|
use gst;
|
2017-12-30 13:31:43 +00:00
|
|
|
use gst_ffi;
|
2017-12-16 09:18:00 +00:00
|
|
|
use gst_video;
|
2017-08-01 12:36:39 +00:00
|
|
|
use libc;
|
|
|
|
use std::boxed::Box as Box_;
|
|
|
|
use std::mem;
|
|
|
|
use std::mem::transmute;
|
|
|
|
use std::ptr;
|
|
|
|
|
|
|
|
glib_wrapper! {
|
2017-12-30 13:31:43 +00:00
|
|
|
pub struct Player(Object<ffi::GstPlayer, ffi::GstPlayerClass>): [
|
|
|
|
gst::Object => gst_ffi::GstObject,
|
|
|
|
];
|
2017-08-01 12:36:39 +00:00
|
|
|
|
|
|
|
match fn {
|
|
|
|
get_type => || ffi::gst_player_get_type(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Player {
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_audio_video_offset(&self) -> i64 {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_get_audio_video_offset(self.to_glib_none().0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_color_balance(&self, type_: PlayerColorBalanceType) -> f64 {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_get_color_balance(self.to_glib_none().0, type_.to_glib())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_current_audio_track(&self) -> Option<PlayerAudioInfo> {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_player_get_current_audio_track(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_current_subtitle_track(&self) -> Option<PlayerSubtitleInfo> {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
from_glib_none(ffi::gst_player_get_current_subtitle_track(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_current_video_track(&self) -> Option<PlayerVideoInfo> {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_player_get_current_video_track(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_current_visualization(&self) -> Option<String> {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_player_get_current_visualization(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_duration(&self) -> gst::ClockTime {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-11-11 10:21:55 +00:00
|
|
|
from_glib(ffi::gst_player_get_duration(self.to_glib_none().0))
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_media_info(&self) -> Option<PlayerMediaInfo> {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_player_get_media_info(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn get_multiview_flags(&self) -> gst_video::VideoMultiviewFlags {
|
|
|
|
unsafe {
|
|
|
|
from_glib(ffi::gst_player_get_multiview_flags(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
2017-08-01 12:36:39 +00:00
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn get_multiview_mode(&self) -> gst_video::VideoMultiviewFramePacking {
|
|
|
|
unsafe {
|
|
|
|
from_glib(ffi::gst_player_get_multiview_mode(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
2017-08-01 12:36:39 +00:00
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_mute(&self) -> bool {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
from_glib(ffi::gst_player_get_mute(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn get_pipeline(&self) -> gst::Element {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_player_get_pipeline(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_position(&self) -> gst::ClockTime {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-11-11 10:21:55 +00:00
|
|
|
from_glib(ffi::gst_player_get_position(self.to_glib_none().0))
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_rate(&self) -> f64 {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_get_rate(self.to_glib_none().0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_subtitle_uri(&self) -> Option<String> {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_player_get_subtitle_uri(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_uri(&self) -> Option<String> {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_player_get_uri(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_video_snapshot<'a, P: Into<Option<&'a gst::Structure>>>(&self, format: PlayerSnapshotFormat, config: P) -> Option<gst::Sample> {
|
2017-08-01 12:36:39 +00:00
|
|
|
let config = config.into();
|
2017-08-07 14:35:57 +00:00
|
|
|
let config = config.to_glib_none();
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-08-07 14:35:57 +00:00
|
|
|
from_glib_full(ffi::gst_player_get_video_snapshot(self.to_glib_none().0, format.to_glib(), config.0))
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_volume(&self) -> f64 {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_get_volume(self.to_glib_none().0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn has_color_balance(&self) -> bool {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
from_glib(ffi::gst_player_has_color_balance(self.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn pause(&self) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_pause(self.to_glib_none().0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn play(&self) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_play(self.to_glib_none().0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn seek(&self, position: gst::ClockTime) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-11-11 10:21:55 +00:00
|
|
|
ffi::gst_player_seek(self.to_glib_none().0, position.to_glib());
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn set_audio_track(&self, stream_index: i32) -> Result<(), glib::error::BoolError> {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-12-16 09:18:00 +00:00
|
|
|
glib::error::BoolError::from_glib(ffi::gst_player_set_audio_track(self.to_glib_none().0, stream_index), "Failed to set audio track")
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn set_audio_track_enabled(&self, enabled: bool) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_audio_track_enabled(self.to_glib_none().0, enabled.to_glib());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn set_audio_video_offset(&self, offset: i64) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_audio_video_offset(self.to_glib_none().0, offset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn set_color_balance(&self, type_: PlayerColorBalanceType, value: f64) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_color_balance(self.to_glib_none().0, type_.to_glib(), value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn set_multiview_flags(&self, flags: gst_video::VideoMultiviewFlags) {
|
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_multiview_flags(self.to_glib_none().0, flags.to_glib());
|
|
|
|
}
|
|
|
|
}
|
2017-08-01 12:36:39 +00:00
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn set_multiview_mode(&self, mode: gst_video::VideoMultiviewFramePacking) {
|
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_multiview_mode(self.to_glib_none().0, mode.to_glib());
|
|
|
|
}
|
|
|
|
}
|
2017-08-01 12:36:39 +00:00
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn set_mute(&self, val: bool) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_mute(self.to_glib_none().0, val.to_glib());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn set_rate(&self, rate: f64) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_rate(self.to_glib_none().0, rate);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn set_subtitle_track(&self, stream_index: i32) -> Result<(), glib::error::BoolError> {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-12-16 09:18:00 +00:00
|
|
|
glib::error::BoolError::from_glib(ffi::gst_player_set_subtitle_track(self.to_glib_none().0, stream_index), "Failed to set subtitle track")
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn set_subtitle_track_enabled(&self, enabled: bool) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_subtitle_track_enabled(self.to_glib_none().0, enabled.to_glib());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn set_subtitle_uri(&self, uri: &str) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_subtitle_uri(self.to_glib_none().0, uri.to_glib_none().0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn set_uri(&self, uri: &str) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_uri(self.to_glib_none().0, uri.to_glib_none().0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn set_video_track(&self, stream_index: i32) -> Result<(), glib::error::BoolError> {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-12-16 09:18:00 +00:00
|
|
|
glib::error::BoolError::from_glib(ffi::gst_player_set_video_track(self.to_glib_none().0, stream_index), "Failed to set video track")
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn set_video_track_enabled(&self, enabled: bool) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_video_track_enabled(self.to_glib_none().0, enabled.to_glib());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn set_visualization<'a, P: Into<Option<&'a str>>>(&self, name: P) -> Result<(), glib::error::BoolError> {
|
|
|
|
let name = name.into();
|
|
|
|
let name = name.to_glib_none();
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-12-16 09:18:00 +00:00
|
|
|
glib::error::BoolError::from_glib(ffi::gst_player_set_visualization(self.to_glib_none().0, name.0), "Failed to set visualization")
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn set_visualization_enabled(&self, enabled: bool) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_visualization_enabled(self.to_glib_none().0, enabled.to_glib());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn set_volume(&self, val: f64) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_set_volume(self.to_glib_none().0, val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn stop(&self) {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
ffi::gst_player_stop(self.to_glib_none().0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
pub fn get_property_suburi(&self) -> Option<String> {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2018-02-06 14:42:34 +00:00
|
|
|
let mut value = Value::from_type(<String as StaticType>::static_type());
|
2017-08-01 12:36:39 +00:00
|
|
|
gobject_ffi::g_object_get_property(self.to_glib_none().0, "suburi".to_glib_none().0, value.to_glib_none_mut().0);
|
2017-11-27 17:16:34 +00:00
|
|
|
value.get()
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-19 18:34:25 +00:00
|
|
|
pub fn set_property_suburi<'a, P: Into<Option<&'a str>>>(&self, suburi: P) {
|
|
|
|
let suburi = suburi.into();
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
|
|
|
gobject_ffi::g_object_set_property(self.to_glib_none().0, "suburi".to_glib_none().0, Value::from(suburi).to_glib_none().0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn get_property_video_multiview_flags(&self) -> gst_video::VideoMultiviewFlags {
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe {
|
2018-02-06 14:42:34 +00:00
|
|
|
let mut value = Value::from_type(<gst_video::VideoMultiviewFlags as StaticType>::static_type());
|
2017-12-16 09:18:00 +00:00
|
|
|
gobject_ffi::g_object_get_property(self.to_glib_none().0, "video-multiview-flags".to_glib_none().0, value.to_glib_none_mut().0);
|
|
|
|
value.get().unwrap()
|
2017-08-07 14:35:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn set_property_video_multiview_flags(&self, video_multiview_flags: gst_video::VideoMultiviewFlags) {
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe {
|
2017-12-16 09:18:00 +00:00
|
|
|
gobject_ffi::g_object_set_property(self.to_glib_none().0, "video-multiview-flags".to_glib_none().0, Value::from(&video_multiview_flags).to_glib_none().0);
|
2017-08-07 14:35:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn get_property_video_multiview_mode(&self) -> gst_video::VideoMultiviewFramePacking {
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe {
|
2018-02-06 14:42:34 +00:00
|
|
|
let mut value = Value::from_type(<gst_video::VideoMultiviewFramePacking as StaticType>::static_type());
|
2017-12-16 09:18:00 +00:00
|
|
|
gobject_ffi::g_object_get_property(self.to_glib_none().0, "video-multiview-mode".to_glib_none().0, value.to_glib_none_mut().0);
|
|
|
|
value.get().unwrap()
|
2017-08-07 14:35:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-16 09:18:00 +00:00
|
|
|
pub fn set_property_video_multiview_mode(&self, video_multiview_mode: gst_video::VideoMultiviewFramePacking) {
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe {
|
2017-12-16 09:18:00 +00:00
|
|
|
gobject_ffi::g_object_set_property(self.to_glib_none().0, "video-multiview-mode".to_glib_none().0, Value::from(&video_multiview_mode).to_glib_none().0);
|
2017-08-07 14:35:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_audio_streams(info: &PlayerMediaInfo) -> Vec<PlayerAudioInfo> {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
unsafe {
|
|
|
|
FromGlibPtrContainer::from_glib_none(ffi::gst_player_get_audio_streams(info.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_subtitle_streams(info: &PlayerMediaInfo) -> Vec<PlayerSubtitleInfo> {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
unsafe {
|
|
|
|
FromGlibPtrContainer::from_glib_none(ffi::gst_player_get_subtitle_streams(info.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_video_streams(info: &PlayerMediaInfo) -> Vec<PlayerVideoInfo> {
|
|
|
|
skip_assert_initialized!();
|
|
|
|
unsafe {
|
|
|
|
FromGlibPtrContainer::from_glib_none(ffi::gst_player_get_video_streams(info.to_glib_none().0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn visualizations_get() -> Vec<PlayerVisualization> {
|
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
|
|
|
FromGlibPtrContainer::from_glib_full(ffi::gst_player_visualizations_get())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_buffering<F: Fn(&Player, i32) + Send + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player, i32) + Send + 'static>> = Box_::new(Box_::new(f));
|
2017-08-01 12:36:39 +00:00
|
|
|
connect(self.to_glib_none().0, "buffering",
|
2017-08-07 14:35:57 +00:00
|
|
|
transmute(buffering_trampoline as usize), Box_::into_raw(f) as *mut _)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_end_of_stream<F: Fn(&Player) + Send + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-08-07 14:35:57 +00:00
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + 'static>> = Box_::new(Box_::new(f));
|
2017-08-01 12:36:39 +00:00
|
|
|
connect(self.to_glib_none().0, "end-of-stream",
|
2017-08-07 14:35:57 +00:00
|
|
|
transmute(end_of_stream_trampoline as usize), Box_::into_raw(f) as *mut _)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_error<F: Fn(&Player, &Error) + Send + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-08-07 14:35:57 +00:00
|
|
|
let f: Box_<Box_<Fn(&Player, &Error) + Send + 'static>> = Box_::new(Box_::new(f));
|
2017-08-01 12:36:39 +00:00
|
|
|
connect(self.to_glib_none().0, "error",
|
2017-08-07 14:35:57 +00:00
|
|
|
transmute(error_trampoline as usize), Box_::into_raw(f) as *mut _)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_media_info_updated<F: Fn(&Player, &PlayerMediaInfo) + Send + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-08-07 14:35:57 +00:00
|
|
|
let f: Box_<Box_<Fn(&Player, &PlayerMediaInfo) + Send + 'static>> = Box_::new(Box_::new(f));
|
2017-08-01 12:36:39 +00:00
|
|
|
connect(self.to_glib_none().0, "media-info-updated",
|
2017-08-07 14:35:57 +00:00
|
|
|
transmute(media_info_updated_trampoline as usize), Box_::into_raw(f) as *mut _)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_mute_changed<F: Fn(&Player) + Send + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-08-07 14:35:57 +00:00
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + 'static>> = Box_::new(Box_::new(f));
|
2017-08-01 12:36:39 +00:00
|
|
|
connect(self.to_glib_none().0, "mute-changed",
|
2017-08-07 14:35:57 +00:00
|
|
|
transmute(mute_changed_trampoline as usize), Box_::into_raw(f) as *mut _)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_state_changed<F: Fn(&Player, PlayerState) + Send + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-08-07 14:35:57 +00:00
|
|
|
let f: Box_<Box_<Fn(&Player, PlayerState) + Send + 'static>> = Box_::new(Box_::new(f));
|
2017-08-01 12:36:39 +00:00
|
|
|
connect(self.to_glib_none().0, "state-changed",
|
2017-08-07 14:35:57 +00:00
|
|
|
transmute(state_changed_trampoline as usize), Box_::into_raw(f) as *mut _)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_uri_loaded<F: Fn(&Player, &str) + Send + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-08-07 14:35:57 +00:00
|
|
|
let f: Box_<Box_<Fn(&Player, &str) + Send + 'static>> = Box_::new(Box_::new(f));
|
2017-08-01 12:36:39 +00:00
|
|
|
connect(self.to_glib_none().0, "uri-loaded",
|
2017-08-07 14:35:57 +00:00
|
|
|
transmute(uri_loaded_trampoline as usize), Box_::into_raw(f) as *mut _)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_video_dimensions_changed<F: Fn(&Player, i32, i32) + Send + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-08-07 14:35:57 +00:00
|
|
|
let f: Box_<Box_<Fn(&Player, i32, i32) + Send + 'static>> = Box_::new(Box_::new(f));
|
2017-08-01 12:36:39 +00:00
|
|
|
connect(self.to_glib_none().0, "video-dimensions-changed",
|
2017-08-07 14:35:57 +00:00
|
|
|
transmute(video_dimensions_changed_trampoline as usize), Box_::into_raw(f) as *mut _)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_volume_changed<F: Fn(&Player) + Send + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-08-07 14:35:57 +00:00
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + 'static>> = Box_::new(Box_::new(f));
|
2017-08-01 12:36:39 +00:00
|
|
|
connect(self.to_glib_none().0, "volume-changed",
|
2017-08-07 14:35:57 +00:00
|
|
|
transmute(volume_changed_trampoline as usize), Box_::into_raw(f) as *mut _)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_warning<F: Fn(&Player, &Error) + Send + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-01 12:36:39 +00:00
|
|
|
unsafe {
|
2017-08-07 14:35:57 +00:00
|
|
|
let f: Box_<Box_<Fn(&Player, &Error) + Send + 'static>> = Box_::new(Box_::new(f));
|
2017-08-01 12:36:39 +00:00
|
|
|
connect(self.to_glib_none().0, "warning",
|
2017-08-07 14:35:57 +00:00
|
|
|
transmute(warning_trampoline as usize), Box_::into_raw(f) as *mut _)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-30 11:45:25 +00:00
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_audio_video_offset_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::audio-video-offset",
|
|
|
|
transmute(notify_audio_video_offset_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_current_audio_track_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::current-audio-track",
|
|
|
|
transmute(notify_current_audio_track_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_current_subtitle_track_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::current-subtitle-track",
|
|
|
|
transmute(notify_current_subtitle_track_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_current_video_track_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::current-video-track",
|
|
|
|
transmute(notify_current_video_track_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_duration_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::duration",
|
|
|
|
transmute(notify_duration_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_media_info_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::media-info",
|
|
|
|
transmute(notify_media_info_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_mute_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::mute",
|
|
|
|
transmute(notify_mute_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_pipeline_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::pipeline",
|
|
|
|
transmute(notify_pipeline_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_position_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::position",
|
|
|
|
transmute(notify_position_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_rate_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::rate",
|
|
|
|
transmute(notify_rate_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_suburi_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::suburi",
|
|
|
|
transmute(notify_suburi_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_uri_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::uri",
|
|
|
|
transmute(notify_uri_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_video_multiview_flags_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::video-multiview-flags",
|
|
|
|
transmute(notify_video_multiview_flags_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_video_multiview_mode_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::video-multiview-mode",
|
|
|
|
transmute(notify_video_multiview_mode_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 13:01:32 +00:00
|
|
|
pub fn connect_property_volume_notify<F: Fn(&Player) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
|
2017-08-30 11:45:25 +00:00
|
|
|
unsafe {
|
|
|
|
let f: Box_<Box_<Fn(&Player) + Send + Sync + 'static>> = Box_::new(Box_::new(f));
|
|
|
|
connect(self.to_glib_none().0, "notify::volume",
|
|
|
|
transmute(notify_volume_trampoline as usize), Box_::into_raw(f) as *mut _)
|
|
|
|
}
|
|
|
|
}
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe impl Send for Player {}
|
|
|
|
unsafe impl Sync for Player {}
|
|
|
|
|
|
|
|
unsafe extern "C" fn buffering_trampoline(this: *mut ffi::GstPlayer, object: libc::c_int, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player, i32) + Send + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this), object)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe extern "C" fn end_of_stream_trampoline(this: *mut ffi::GstPlayer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe extern "C" fn error_trampoline(this: *mut ffi::GstPlayer, object: *mut glib_ffi::GError, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player, &Error) + Send + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this), &from_glib_borrow(object))
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe extern "C" fn media_info_updated_trampoline(this: *mut ffi::GstPlayer, object: *mut ffi::GstPlayerMediaInfo, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player, &PlayerMediaInfo) + Send + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this), &from_glib_borrow(object))
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe extern "C" fn mute_changed_trampoline(this: *mut ffi::GstPlayer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe extern "C" fn state_changed_trampoline(this: *mut ffi::GstPlayer, object: ffi::GstPlayerState, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player, PlayerState) + Send + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this), from_glib(object))
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe extern "C" fn uri_loaded_trampoline(this: *mut ffi::GstPlayer, object: *mut libc::c_char, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player, &str) + Send + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this), &String::from_glib_none(object))
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe extern "C" fn video_dimensions_changed_trampoline(this: *mut ffi::GstPlayer, object: libc::c_int, p0: libc::c_int, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player, i32, i32) + Send + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this), object, p0)
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe extern "C" fn volume_changed_trampoline(this: *mut ffi::GstPlayer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
|
|
|
|
2017-08-07 14:35:57 +00:00
|
|
|
unsafe extern "C" fn warning_trampoline(this: *mut ffi::GstPlayer, object: *mut glib_ffi::GError, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player, &Error) + Send + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this), &from_glib_borrow(object))
|
2017-08-01 12:36:39 +00:00
|
|
|
}
|
2017-08-30 11:45:25 +00:00
|
|
|
|
|
|
|
unsafe extern "C" fn notify_audio_video_offset_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_current_audio_track_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_current_subtitle_track_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_current_video_track_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_duration_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_media_info_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_mute_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_pipeline_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_position_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_rate_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_suburi_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_uri_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_video_multiview_flags_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_video_multiview_mode_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsafe extern "C" fn notify_volume_trampoline(this: *mut ffi::GstPlayer, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
|
|
|
|
let f: &&(Fn(&Player) + Send + Sync + 'static) = transmute(f);
|
2017-09-09 13:01:32 +00:00
|
|
|
f(&from_glib_borrow(this))
|
2017-08-30 11:45:25 +00:00
|
|
|
}
|