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

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

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

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

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

    /// Get the [`crate::gst_pbutils::DiscovererStreamInfo`] user by `self`
    ///
    /// # Returns
    ///
    /// a [`crate::UriClipAsset`]
    #[doc(alias = "ges_uri_source_asset_get_stream_info")]
    #[doc(alias = "get_stream_info")]
    fn stream_info(&self) -> Option<gst_pbutils::DiscovererStreamInfo>;

    #[doc(alias = "ges_uri_source_asset_get_stream_uri")]
    #[doc(alias = "get_stream_uri")]
    fn stream_uri(&self) -> Option<glib::GString>;

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

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

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

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

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