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
// 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 ges_sys;
use glib::object::IsA;
use glib::translate::*;
use glib::GString;
use gst_pbutils;
use Asset;
use UriClipAsset;

glib_wrapper! {
    /// Asset to create a stream specific `Source` for a media file.
    ///
    /// NOTE: You should never request such a `Asset` as they will be created automatically
    /// by `UriClipAsset`-s.
    ///
    /// # Implements
    ///
    /// [`UriSourceAssetExt`](trait.UriSourceAssetExt.html), [`AssetExt`](trait.AssetExt.html), [`glib::object::ObjectExt`](../glib/object/trait.ObjectExt.html)
    pub struct UriSourceAsset(Object<ges_sys::GESUriSourceAsset, ges_sys::GESUriSourceAssetClass, UriSourceAssetClass>) @extends Asset;

    match fn {
        get_type => || ges_sys::ges_uri_source_asset_get_type(),
    }
}

pub const NONE_URI_SOURCE_ASSET: Option<&UriSourceAsset> = None;

/// Trait containing all `UriSourceAsset` methods.
///
/// # Implementors
///
/// [`UriSourceAsset`](struct.UriSourceAsset.html)
pub trait UriSourceAssetExt: 'static {
    /// Get the `UriClipAsset` `self_` is contained in
    ///
    /// # Returns
    ///
    /// a `UriClipAsset`
    fn get_filesource_asset(&self) -> Option<UriClipAsset>;

    /// Get the `gst_pbutils::DiscovererStreamInfo` user by `self`
    ///
    /// # Returns
    ///
    /// a `UriClipAsset`
    fn get_stream_info(&self) -> Option<gst_pbutils::DiscovererStreamInfo>;

    fn get_stream_uri(&self) -> Option<GString>;

    /// Check if `self` contains a single image
    ///
    /// Feature: `v1_18`
    ///
    ///
    /// # Returns
    ///
    /// `true` if the video stream corresponds to an image (i.e. only
    /// contains one frame)
    #[cfg(any(feature = "v1_18", feature = "dox"))]
    fn is_image(&self) -> bool;
}

impl<O: IsA<UriSourceAsset>> UriSourceAssetExt for O {
    fn get_filesource_asset(&self) -> Option<UriClipAsset> {
        unsafe {
            from_glib_none(ges_sys::ges_uri_source_asset_get_filesource_asset(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_stream_info(&self) -> Option<gst_pbutils::DiscovererStreamInfo> {
        unsafe {
            from_glib_none(ges_sys::ges_uri_source_asset_get_stream_info(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    fn get_stream_uri(&self) -> Option<GString> {
        unsafe {
            from_glib_none(ges_sys::ges_uri_source_asset_get_stream_uri(
                self.as_ref().to_glib_none().0,
            ))
        }
    }

    #[cfg(any(feature = "v1_18", feature = "dox"))]
    fn is_image(&self) -> bool {
        unsafe {
            from_glib(ges_sys::ges_uri_source_asset_is_image(
                self.as_ref().to_glib_none().0,
            ))
        }
    }
}