mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2025-05-23 16:49:05 +00:00
66 lines
1.9 KiB
Rust
66 lines
1.9 KiB
Rust
// 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 crate::Asset;
|
|
use crate::UriClipAsset;
|
|
use glib::object::IsA;
|
|
use glib::translate::*;
|
|
|
|
glib::glib_wrapper! {
|
|
pub struct UriSourceAsset(Object<ffi::GESUriSourceAsset, ffi::GESUriSourceAssetClass>) @extends Asset;
|
|
|
|
match fn {
|
|
get_type => || ffi::ges_uri_source_asset_get_type(),
|
|
}
|
|
}
|
|
|
|
pub const NONE_URI_SOURCE_ASSET: Option<&UriSourceAsset> = None;
|
|
|
|
pub trait UriSourceAssetExt: 'static {
|
|
fn get_filesource_asset(&self) -> Option<UriClipAsset>;
|
|
|
|
fn get_stream_info(&self) -> Option<gst_pbutils::DiscovererStreamInfo>;
|
|
|
|
fn get_stream_uri(&self) -> Option<glib::GString>;
|
|
|
|
#[cfg(any(feature = "v1_18", feature = "dox"))]
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
|
|
fn is_image(&self) -> bool;
|
|
}
|
|
|
|
impl<O: IsA<UriSourceAsset>> UriSourceAssetExt for O {
|
|
fn get_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 get_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 get_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,
|
|
))
|
|
}
|
|
}
|
|
}
|