1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use glib::object::IsA;
use glib::translate::*;
use glib::GString;
use gst;
use gst_player_sys;

glib_wrapper! {
    /// Base structure for information concering a media stream. Depending on
    /// the stream type, one can find more media-specific information in
    /// `PlayerVideoInfo`, `PlayerAudioInfo`, `PlayerSubtitleInfo`.
    ///
    /// # Implements
    ///
    /// [`PlayerStreamInfoExt`](trait.PlayerStreamInfoExt.html), [`glib::object::ObjectExt`](../glib/object/trait.ObjectExt.html)
    pub struct PlayerStreamInfo(Object<gst_player_sys::GstPlayerStreamInfo, gst_player_sys::GstPlayerStreamInfoClass, PlayerStreamInfoClass>);

    match fn {
        get_type => || gst_player_sys::gst_player_stream_info_get_type(),
    }
}

unsafe impl Send for PlayerStreamInfo {}
unsafe impl Sync for PlayerStreamInfo {}

pub const NONE_PLAYER_STREAM_INFO: Option<&PlayerStreamInfo> = None;

/// Trait containing all `PlayerStreamInfo` methods.
///
/// # Implementors
///
/// [`PlayerAudioInfo`](struct.PlayerAudioInfo.html), [`PlayerStreamInfo`](struct.PlayerStreamInfo.html), [`PlayerSubtitleInfo`](struct.PlayerSubtitleInfo.html), [`PlayerVideoInfo`](struct.PlayerVideoInfo.html)
pub trait PlayerStreamInfoExt: 'static {
    ///
    /// # Returns
    ///
    /// the `gst::Caps` of the stream.
    fn get_caps(&self) -> Option<gst::Caps>;

    /// A string describing codec used in `PlayerStreamInfo`.
    ///
    /// # Returns
    ///
    /// codec string or NULL on unknown.
    fn get_codec(&self) -> Option<GString>;

    /// Function to get stream index from `PlayerStreamInfo` instance.
    ///
    /// # Returns
    ///
    /// the stream index of this stream.
    fn get_index(&self) -> i32;

    /// Function to return human readable name for the stream type
    /// of the given `self` (ex: "audio", "video", "subtitle")
    ///
    /// # Returns
    ///
    /// a human readable name
    fn get_stream_type(&self) -> GString;

    ///
    /// # Returns
    ///
    /// the tags contained in this stream.
    fn get_tags(&self) -> Option<gst::TagList>;
}

impl<O: IsA<PlayerStreamInfo>> PlayerStreamInfoExt for O {
    fn get_caps(&self) -> Option<gst::Caps> {
        unsafe {
            from_glib_none(gst_player_sys::gst_player_stream_info_get_caps(
                const_override(self.as_ref().to_glib_none().0),
            ))
        }
    }

    fn get_codec(&self) -> Option<GString> {
        unsafe {
            from_glib_none(gst_player_sys::gst_player_stream_info_get_codec(
                const_override(self.as_ref().to_glib_none().0),
            ))
        }
    }

    fn get_index(&self) -> i32 {
        unsafe {
            gst_player_sys::gst_player_stream_info_get_index(const_override(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_stream_type(&self) -> GString {
        unsafe {
            from_glib_none(gst_player_sys::gst_player_stream_info_get_stream_type(
                const_override(self.as_ref().to_glib_none().0),
            ))
        }
    }

    fn get_tags(&self) -> Option<gst::TagList> {
        unsafe {
            from_glib_none(gst_player_sys::gst_player_stream_info_get_tags(
                const_override(self.as_ref().to_glib_none().0),
            ))
        }
    }
}