mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-12-11 10:46:36 +00:00
7fcd560d18
- Doc aliases for types; - ffi constants for bitflags too; - Completely overhauled docs generation under the hood (only emitting valid links, more types receive documentation now).
83 lines
2.4 KiB
Rust
83 lines
2.4 KiB
Rust
// 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::object::IsA;
|
|
use glib::translate::*;
|
|
|
|
glib::wrapper! {
|
|
#[doc(alias = "GstPlayerStreamInfo")]
|
|
pub struct PlayerStreamInfo(Object<ffi::GstPlayerStreamInfo, ffi::GstPlayerStreamInfoClass>);
|
|
|
|
match fn {
|
|
type_ => || ffi::gst_player_stream_info_get_type(),
|
|
}
|
|
}
|
|
|
|
unsafe impl Send for PlayerStreamInfo {}
|
|
unsafe impl Sync for PlayerStreamInfo {}
|
|
|
|
pub const NONE_PLAYER_STREAM_INFO: Option<&PlayerStreamInfo> = None;
|
|
|
|
pub trait PlayerStreamInfoExt: 'static {
|
|
#[doc(alias = "gst_player_stream_info_get_caps")]
|
|
#[doc(alias = "get_caps")]
|
|
fn caps(&self) -> Option<gst::Caps>;
|
|
|
|
#[doc(alias = "gst_player_stream_info_get_codec")]
|
|
#[doc(alias = "get_codec")]
|
|
fn codec(&self) -> Option<glib::GString>;
|
|
|
|
#[doc(alias = "gst_player_stream_info_get_index")]
|
|
#[doc(alias = "get_index")]
|
|
fn index(&self) -> i32;
|
|
|
|
#[doc(alias = "gst_player_stream_info_get_stream_type")]
|
|
#[doc(alias = "get_stream_type")]
|
|
fn stream_type(&self) -> glib::GString;
|
|
|
|
#[doc(alias = "gst_player_stream_info_get_tags")]
|
|
#[doc(alias = "get_tags")]
|
|
fn tags(&self) -> Option<gst::TagList>;
|
|
}
|
|
|
|
impl<O: IsA<PlayerStreamInfo>> PlayerStreamInfoExt for O {
|
|
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,
|
|
)))
|
|
}
|
|
}
|
|
|
|
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,
|
|
)))
|
|
}
|
|
}
|
|
|
|
fn index(&self) -> i32 {
|
|
unsafe {
|
|
ffi::gst_player_stream_info_get_index(const_override(self.as_ref().to_glib_none().0))
|
|
}
|
|
}
|
|
|
|
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,
|
|
)))
|
|
}
|
|
}
|
|
|
|
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,
|
|
)))
|
|
}
|
|
}
|
|
}
|