2018-04-23 17:34:22 +00:00
|
|
|
// This file was generated by gir (https://github.com/gtk-rs/gir)
|
|
|
|
// from gir-files (https://github.com/gtk-rs/gir-files)
|
2021-04-01 13:58:41 +00:00
|
|
|
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
|
2017-07-04 22:47:33 +00:00
|
|
|
// DO NOT EDIT
|
|
|
|
|
2020-11-21 13:46:33 +00:00
|
|
|
use crate::Caps;
|
|
|
|
use crate::Object;
|
|
|
|
use crate::StreamFlags;
|
|
|
|
use crate::StreamType;
|
|
|
|
use crate::TagList;
|
|
|
|
use glib::object::ObjectType as ObjectType_;
|
|
|
|
use glib::signal::connect_raw;
|
|
|
|
use glib::signal::SignalHandlerId;
|
|
|
|
use glib::translate::*;
|
|
|
|
use std::boxed::Box as Box_;
|
|
|
|
use std::mem::transmute;
|
2017-07-04 22:47:33 +00:00
|
|
|
|
2020-12-17 22:34:53 +00:00
|
|
|
glib::wrapper! {
|
2021-06-02 07:47:51 +00:00
|
|
|
#[doc(alias = "GstStream")]
|
2020-11-21 13:46:33 +00:00
|
|
|
pub struct Stream(Object<ffi::GstStream, ffi::GstStreamClass>) @extends Object;
|
2017-07-04 22:47:33 +00:00
|
|
|
|
|
|
|
match fn {
|
2021-04-19 19:55:01 +00:00
|
|
|
type_ => || ffi::gst_stream_get_type(),
|
2017-07-04 22:47:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Stream {
|
2022-04-07 08:22:39 +00:00
|
|
|
#[doc(alias = "gst_stream_new")]
|
|
|
|
pub fn new(
|
|
|
|
stream_id: Option<&str>,
|
|
|
|
caps: Option<&Caps>,
|
|
|
|
type_: StreamType,
|
|
|
|
flags: StreamFlags,
|
|
|
|
) -> Stream {
|
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
|
|
|
from_glib_full(ffi::gst_stream_new(
|
|
|
|
stream_id.to_glib_none().0,
|
|
|
|
caps.to_glib_none().0,
|
|
|
|
type_.into_glib(),
|
|
|
|
flags.into_glib(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 13:00:17 +00:00
|
|
|
#[doc(alias = "gst_stream_get_caps")]
|
2021-05-03 18:35:37 +00:00
|
|
|
#[doc(alias = "get_caps")]
|
2021-04-11 19:38:18 +00:00
|
|
|
pub fn caps(&self) -> Option<Caps> {
|
2020-11-21 13:46:33 +00:00
|
|
|
unsafe { from_glib_full(ffi::gst_stream_get_caps(self.to_glib_none().0)) }
|
2017-07-10 21:02:08 +00:00
|
|
|
}
|
2017-07-04 22:47:33 +00:00
|
|
|
|
2020-12-08 13:00:17 +00:00
|
|
|
#[doc(alias = "gst_stream_get_stream_flags")]
|
2021-05-03 18:35:37 +00:00
|
|
|
#[doc(alias = "get_stream_flags")]
|
2021-04-11 19:38:18 +00:00
|
|
|
pub fn stream_flags(&self) -> StreamFlags {
|
2020-11-21 13:46:33 +00:00
|
|
|
unsafe { from_glib(ffi::gst_stream_get_stream_flags(self.to_glib_none().0)) }
|
2017-07-04 22:47:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 13:00:17 +00:00
|
|
|
#[doc(alias = "gst_stream_get_stream_id")]
|
2021-05-03 18:35:37 +00:00
|
|
|
#[doc(alias = "get_stream_id")]
|
2021-04-11 19:38:18 +00:00
|
|
|
pub fn stream_id(&self) -> Option<glib::GString> {
|
2020-11-21 13:46:33 +00:00
|
|
|
unsafe { from_glib_none(ffi::gst_stream_get_stream_id(self.to_glib_none().0)) }
|
2017-07-04 22:47:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 13:00:17 +00:00
|
|
|
#[doc(alias = "gst_stream_get_stream_type")]
|
2021-05-03 18:35:37 +00:00
|
|
|
#[doc(alias = "get_stream_type")]
|
2021-04-11 19:38:18 +00:00
|
|
|
pub fn stream_type(&self) -> StreamType {
|
2020-11-21 13:46:33 +00:00
|
|
|
unsafe { from_glib(ffi::gst_stream_get_stream_type(self.to_glib_none().0)) }
|
2017-07-04 22:47:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-08 13:00:17 +00:00
|
|
|
#[doc(alias = "gst_stream_get_tags")]
|
2021-05-03 18:35:37 +00:00
|
|
|
#[doc(alias = "get_tags")]
|
2021-04-11 19:38:18 +00:00
|
|
|
pub fn tags(&self) -> Option<TagList> {
|
2020-11-21 13:46:33 +00:00
|
|
|
unsafe { from_glib_full(ffi::gst_stream_get_tags(self.to_glib_none().0)) }
|
2017-07-25 12:21:03 +00:00
|
|
|
}
|
2017-07-04 22:47:33 +00:00
|
|
|
|
2020-12-08 13:00:17 +00:00
|
|
|
#[doc(alias = "gst_stream_set_caps")]
|
2019-03-19 07:40:05 +00:00
|
|
|
pub fn set_caps(&self, caps: Option<&Caps>) {
|
2017-07-10 21:02:08 +00:00
|
|
|
unsafe {
|
2020-11-21 13:46:33 +00:00
|
|
|
ffi::gst_stream_set_caps(self.to_glib_none().0, caps.to_glib_none().0);
|
2017-07-10 21:02:08 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-04 22:47:33 +00:00
|
|
|
|
2020-12-08 13:00:17 +00:00
|
|
|
#[doc(alias = "gst_stream_set_stream_flags")]
|
2017-08-17 11:50:25 +00:00
|
|
|
pub fn set_stream_flags(&self, flags: StreamFlags) {
|
2017-07-04 22:47:33 +00:00
|
|
|
unsafe {
|
2021-04-27 15:10:39 +00:00
|
|
|
ffi::gst_stream_set_stream_flags(self.to_glib_none().0, flags.into_glib());
|
2017-07-04 22:47:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 13:00:17 +00:00
|
|
|
#[doc(alias = "gst_stream_set_stream_type")]
|
2017-08-17 11:50:25 +00:00
|
|
|
pub fn set_stream_type(&self, stream_type: StreamType) {
|
2017-07-04 22:47:33 +00:00
|
|
|
unsafe {
|
2021-04-27 15:10:39 +00:00
|
|
|
ffi::gst_stream_set_stream_type(self.to_glib_none().0, stream_type.into_glib());
|
2017-07-04 22:47:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-08 13:00:17 +00:00
|
|
|
#[doc(alias = "gst_stream_set_tags")]
|
2019-03-19 07:40:05 +00:00
|
|
|
pub fn set_tags(&self, tags: Option<&TagList>) {
|
2017-07-25 12:21:03 +00:00
|
|
|
unsafe {
|
2020-11-21 13:46:33 +00:00
|
|
|
ffi::gst_stream_set_tags(self.to_glib_none().0, tags.to_glib_none().0);
|
2017-07-25 12:21:03 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-18 13:29:21 +00:00
|
|
|
|
2021-05-03 18:35:37 +00:00
|
|
|
#[doc(alias = "caps")]
|
2021-05-26 22:02:42 +00:00
|
|
|
pub fn connect_caps_notify<F: Fn(&Self) + Send + Sync + 'static>(
|
2019-06-18 10:12:00 +00:00
|
|
|
&self,
|
|
|
|
f: F,
|
|
|
|
) -> SignalHandlerId {
|
|
|
|
unsafe extern "C" fn notify_caps_trampoline<F: Fn(&Stream) + Send + Sync + 'static>(
|
2020-11-21 13:46:33 +00:00
|
|
|
this: *mut ffi::GstStream,
|
|
|
|
_param_spec: glib::ffi::gpointer,
|
|
|
|
f: glib::ffi::gpointer,
|
2019-06-18 10:12:00 +00:00
|
|
|
) {
|
2019-06-18 10:10:46 +00:00
|
|
|
let f: &F = &*(f as *const F);
|
|
|
|
f(&from_glib_borrow(this))
|
|
|
|
}
|
2017-08-18 13:29:21 +00:00
|
|
|
unsafe {
|
2019-01-29 13:53:44 +00:00
|
|
|
let f: Box_<F> = Box_::new(f);
|
2019-06-18 10:12:00 +00:00
|
|
|
connect_raw(
|
|
|
|
self.as_ptr() as *mut _,
|
|
|
|
b"notify::caps\0".as_ptr() as *const _,
|
2020-04-13 16:11:33 +00:00
|
|
|
Some(transmute::<_, unsafe extern "C" fn()>(
|
|
|
|
notify_caps_trampoline::<F> as *const (),
|
|
|
|
)),
|
2019-06-18 10:12:00 +00:00
|
|
|
Box_::into_raw(f),
|
|
|
|
)
|
2017-08-18 13:29:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-03 18:35:37 +00:00
|
|
|
#[doc(alias = "stream-flags")]
|
2021-05-26 22:02:42 +00:00
|
|
|
pub fn connect_stream_flags_notify<F: Fn(&Self) + Send + Sync + 'static>(
|
2019-06-18 10:12:00 +00:00
|
|
|
&self,
|
|
|
|
f: F,
|
|
|
|
) -> SignalHandlerId {
|
|
|
|
unsafe extern "C" fn notify_stream_flags_trampoline<
|
|
|
|
F: Fn(&Stream) + Send + Sync + 'static,
|
|
|
|
>(
|
2020-11-21 13:46:33 +00:00
|
|
|
this: *mut ffi::GstStream,
|
|
|
|
_param_spec: glib::ffi::gpointer,
|
|
|
|
f: glib::ffi::gpointer,
|
2019-06-18 10:12:00 +00:00
|
|
|
) {
|
2019-06-18 10:10:46 +00:00
|
|
|
let f: &F = &*(f as *const F);
|
|
|
|
f(&from_glib_borrow(this))
|
|
|
|
}
|
2017-08-18 13:29:21 +00:00
|
|
|
unsafe {
|
2019-01-29 13:53:44 +00:00
|
|
|
let f: Box_<F> = Box_::new(f);
|
2019-06-18 10:12:00 +00:00
|
|
|
connect_raw(
|
|
|
|
self.as_ptr() as *mut _,
|
|
|
|
b"notify::stream-flags\0".as_ptr() as *const _,
|
2020-04-13 16:11:33 +00:00
|
|
|
Some(transmute::<_, unsafe extern "C" fn()>(
|
|
|
|
notify_stream_flags_trampoline::<F> as *const (),
|
|
|
|
)),
|
2019-06-18 10:12:00 +00:00
|
|
|
Box_::into_raw(f),
|
|
|
|
)
|
2017-08-18 13:29:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-03 18:35:37 +00:00
|
|
|
#[doc(alias = "stream-type")]
|
2021-05-26 22:02:42 +00:00
|
|
|
pub fn connect_stream_type_notify<F: Fn(&Self) + Send + Sync + 'static>(
|
2019-06-18 10:12:00 +00:00
|
|
|
&self,
|
|
|
|
f: F,
|
|
|
|
) -> SignalHandlerId {
|
|
|
|
unsafe extern "C" fn notify_stream_type_trampoline<
|
|
|
|
F: Fn(&Stream) + Send + Sync + 'static,
|
|
|
|
>(
|
2020-11-21 13:46:33 +00:00
|
|
|
this: *mut ffi::GstStream,
|
|
|
|
_param_spec: glib::ffi::gpointer,
|
|
|
|
f: glib::ffi::gpointer,
|
2019-06-18 10:12:00 +00:00
|
|
|
) {
|
2019-06-18 10:10:46 +00:00
|
|
|
let f: &F = &*(f as *const F);
|
|
|
|
f(&from_glib_borrow(this))
|
|
|
|
}
|
2017-08-18 13:29:21 +00:00
|
|
|
unsafe {
|
2019-01-29 13:53:44 +00:00
|
|
|
let f: Box_<F> = Box_::new(f);
|
2019-06-18 10:12:00 +00:00
|
|
|
connect_raw(
|
|
|
|
self.as_ptr() as *mut _,
|
|
|
|
b"notify::stream-type\0".as_ptr() as *const _,
|
2020-04-13 16:11:33 +00:00
|
|
|
Some(transmute::<_, unsafe extern "C" fn()>(
|
|
|
|
notify_stream_type_trampoline::<F> as *const (),
|
|
|
|
)),
|
2019-06-18 10:12:00 +00:00
|
|
|
Box_::into_raw(f),
|
|
|
|
)
|
2017-08-18 13:29:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-03 18:35:37 +00:00
|
|
|
#[doc(alias = "tags")]
|
2021-05-26 22:02:42 +00:00
|
|
|
pub fn connect_tags_notify<F: Fn(&Self) + Send + Sync + 'static>(
|
2019-06-18 10:12:00 +00:00
|
|
|
&self,
|
|
|
|
f: F,
|
|
|
|
) -> SignalHandlerId {
|
|
|
|
unsafe extern "C" fn notify_tags_trampoline<F: Fn(&Stream) + Send + Sync + 'static>(
|
2020-11-21 13:46:33 +00:00
|
|
|
this: *mut ffi::GstStream,
|
|
|
|
_param_spec: glib::ffi::gpointer,
|
|
|
|
f: glib::ffi::gpointer,
|
2019-06-18 10:12:00 +00:00
|
|
|
) {
|
2019-06-18 10:10:46 +00:00
|
|
|
let f: &F = &*(f as *const F);
|
|
|
|
f(&from_glib_borrow(this))
|
|
|
|
}
|
2017-08-18 13:29:21 +00:00
|
|
|
unsafe {
|
2019-01-29 13:53:44 +00:00
|
|
|
let f: Box_<F> = Box_::new(f);
|
2019-06-18 10:12:00 +00:00
|
|
|
connect_raw(
|
|
|
|
self.as_ptr() as *mut _,
|
|
|
|
b"notify::tags\0".as_ptr() as *const _,
|
2020-04-13 16:11:33 +00:00
|
|
|
Some(transmute::<_, unsafe extern "C" fn()>(
|
|
|
|
notify_tags_trampoline::<F> as *const (),
|
|
|
|
)),
|
2019-06-18 10:12:00 +00:00
|
|
|
Box_::into_raw(f),
|
|
|
|
)
|
2017-08-18 13:29:21 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-04 22:47:33 +00:00
|
|
|
}
|
2017-08-17 11:50:25 +00:00
|
|
|
|
|
|
|
unsafe impl Send for Stream {}
|
|
|
|
unsafe impl Sync for Stream {}
|