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
// 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::{ffi, Asset, MetaContainer, TrackElementAsset, UriClipAsset};
use glib::{prelude::*, translate::*};
glib::wrapper! {
/// Asset to create a stream specific [`Source`][crate::Source] for a media file.
///
/// NOTE: You should never request such a [`Asset`][crate::Asset] as they will be created automatically
/// by [`UriClipAsset`][crate::UriClipAsset]-s.
///
/// # Implements
///
/// [`UriSourceAssetExt`][trait@crate::prelude::UriSourceAssetExt], [`TrackElementAssetExt`][trait@crate::prelude::TrackElementAssetExt], [`AssetExt`][trait@crate::prelude::AssetExt], [`trait@glib::ObjectExt`], [`MetaContainerExt`][trait@crate::prelude::MetaContainerExt]
#[doc(alias = "GESUriSourceAsset")]
pub struct UriSourceAsset(Object<ffi::GESUriSourceAsset, ffi::GESUriSourceAssetClass>) @extends TrackElementAsset, Asset, @implements MetaContainer;
match fn {
type_ => || ffi::ges_uri_source_asset_get_type(),
}
}
impl UriSourceAsset {
pub const NONE: Option<&'static UriSourceAsset> = None;
}
unsafe impl Send for UriSourceAsset {}
unsafe impl Sync for UriSourceAsset {}
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::UriSourceAsset>> Sealed for T {}
}
/// Trait containing all [`struct@UriSourceAsset`] methods.
///
/// # Implementors
///
/// [`UriSourceAsset`][struct@crate::UriSourceAsset]
pub trait UriSourceAssetExt: IsA<UriSourceAsset> + sealed::Sealed + 'static {
/// Get the [`UriClipAsset`][crate::UriClipAsset] `self_` is contained in
///
/// # Returns
///
/// a [`UriClipAsset`][crate::UriClipAsset]
#[doc(alias = "ges_uri_source_asset_get_filesource_asset")]
#[doc(alias = "get_filesource_asset")]
fn filesource_asset(&self) -> UriClipAsset {
unsafe {
from_glib_none(ffi::ges_uri_source_asset_get_filesource_asset(
self.as_ref().to_glib_none().0,
))
}
}
/// Get the [`gst_pbutils::DiscovererStreamInfo`][crate::gst_pbutils::DiscovererStreamInfo] user by `self`
///
/// # Returns
///
/// a [`UriClipAsset`][crate::UriClipAsset]
#[doc(alias = "ges_uri_source_asset_get_stream_info")]
#[doc(alias = "get_stream_info")]
fn stream_info(&self) -> gst_pbutils::DiscovererStreamInfo {
unsafe {
from_glib_none(ffi::ges_uri_source_asset_get_stream_info(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "ges_uri_source_asset_get_stream_uri")]
#[doc(alias = "get_stream_uri")]
fn stream_uri(&self) -> glib::GString {
unsafe {
from_glib_none(ffi::ges_uri_source_asset_get_stream_uri(
self.as_ref().to_glib_none().0,
))
}
}
/// Check if `self` contains a single image
///
/// # Returns
///
/// [`true`] if the video stream corresponds to an image (i.e. only
/// contains one frame)
#[cfg(feature = "v1_18")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
#[doc(alias = "ges_uri_source_asset_is_image")]
fn is_image(&self) -> bool {
unsafe {
from_glib(ffi::ges_uri_source_asset_is_image(
self.as_ref().to_glib_none().0,
))
}
}
}
impl<O: IsA<UriSourceAsset>> UriSourceAssetExt for O {}