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
// 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 glib::{prelude::*, translate::*};

glib::wrapper! {
    #[doc(alias = "GstPlayerStreamInfo")]
    pub struct PlayerStreamInfo(Object<ffi::GstPlayerStreamInfo, ffi::GstPlayerStreamInfoClass>);

    match fn {
        type_ => || ffi::gst_player_stream_info_get_type(),
    }
}

impl PlayerStreamInfo {
    pub const NONE: Option<&'static PlayerStreamInfo> = None;
}

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

mod sealed {
    pub trait Sealed {}
    impl<T: super::IsA<super::PlayerStreamInfo>> Sealed for T {}
}

pub trait PlayerStreamInfoExt: IsA<PlayerStreamInfo> + sealed::Sealed + 'static {
    #[doc(alias = "gst_player_stream_info_get_caps")]
    #[doc(alias = "get_caps")]
    fn caps(&self) -> Option<gst::Caps> {
        unsafe {
            from_glib_none(ffi::gst_player_stream_info_get_caps(const_override(
                self.as_ref().to_glib_none().0,
            )))
        }
    }

    #[doc(alias = "gst_player_stream_info_get_codec")]
    #[doc(alias = "get_codec")]
    fn codec(&self) -> Option<glib::GString> {
        unsafe {
            from_glib_none(ffi::gst_player_stream_info_get_codec(const_override(
                self.as_ref().to_glib_none().0,
            )))
        }
    }

    #[doc(alias = "gst_player_stream_info_get_index")]
    #[doc(alias = "get_index")]
    fn index(&self) -> i32 {
        unsafe {
            ffi::gst_player_stream_info_get_index(const_override(self.as_ref().to_glib_none().0))
        }
    }

    #[doc(alias = "gst_player_stream_info_get_stream_type")]
    #[doc(alias = "get_stream_type")]
    fn stream_type(&self) -> glib::GString {
        unsafe {
            from_glib_none(ffi::gst_player_stream_info_get_stream_type(const_override(
                self.as_ref().to_glib_none().0,
            )))
        }
    }

    #[doc(alias = "gst_player_stream_info_get_tags")]
    #[doc(alias = "get_tags")]
    fn tags(&self) -> Option<gst::TagList> {
        unsafe {
            from_glib_none(ffi::gst_player_stream_info_get_tags(const_override(
                self.as_ref().to_glib_none().0,
            )))
        }
    }
}

impl<O: IsA<PlayerStreamInfo>> PlayerStreamInfoExt for O {}