gstreamer-rs/gstreamer/src/auto/stream.rs

216 lines
8 KiB
Rust
Raw Normal View History

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)
2017-07-04 22:47:33 +00:00
// DO NOT EDIT
2017-07-10 21:02:08 +00:00
use Caps;
2017-07-04 22:47:33 +00:00
use Object;
use StreamFlags;
use StreamType;
use TagList;
2017-07-04 22:47:33 +00:00
use ffi;
use glib::GString;
use glib::StaticType;
use glib::Value;
2019-01-16 11:32:39 +00:00
use glib::object::ObjectType;
2017-09-09 13:01:32 +00:00
use glib::signal::SignalHandlerId;
use glib::signal::connect_raw;
2017-07-04 22:47:33 +00:00
use glib::translate::*;
2017-07-19 18:41:25 +00:00
use glib_ffi;
2017-07-04 22:47:33 +00:00
use gobject_ffi;
use std::boxed::Box as Box_;
use std::mem::transmute;
2017-07-04 22:47:33 +00:00
glib_wrapper! {
2019-01-16 11:32:39 +00:00
pub struct Stream(Object<ffi::GstStream, ffi::GstStreamClass, StreamClass>) @extends Object;
2017-07-04 22:47:33 +00:00
match fn {
get_type => || ffi::gst_stream_get_type(),
}
}
impl Stream {
2017-10-01 13:52:15 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
pub fn get_caps(&self) -> Option<Caps> {
2017-07-10 21:02:08 +00:00
unsafe {
from_glib_full(ffi::gst_stream_get_caps(self.to_glib_none().0))
}
}
2017-07-04 22:47:33 +00:00
2017-10-01 13:52:15 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
pub fn get_stream_flags(&self) -> StreamFlags {
2017-07-04 22:47:33 +00:00
unsafe {
from_glib(ffi::gst_stream_get_stream_flags(self.to_glib_none().0))
}
}
2017-10-01 13:52:15 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
pub fn get_stream_id(&self) -> Option<GString> {
2017-07-04 22:47:33 +00:00
unsafe {
from_glib_none(ffi::gst_stream_get_stream_id(self.to_glib_none().0))
}
}
2017-10-01 13:52:15 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
pub fn get_stream_type(&self) -> StreamType {
2017-07-04 22:47:33 +00:00
unsafe {
from_glib(ffi::gst_stream_get_stream_type(self.to_glib_none().0))
}
}
2017-10-01 13:52:15 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
pub fn get_tags(&self) -> Option<TagList> {
unsafe {
from_glib_full(ffi::gst_stream_get_tags(self.to_glib_none().0))
}
}
2017-07-04 22:47:33 +00:00
2017-10-01 13:52:15 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
pub fn set_caps<'a, P: Into<Option<&'a Caps>>>(&self, caps: P) {
2017-07-10 21:02:08 +00:00
let caps = caps.into();
unsafe {
2019-01-16 11:32:39 +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
2017-10-01 13:52:15 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
pub fn set_stream_flags(&self, flags: StreamFlags) {
2017-07-04 22:47:33 +00:00
unsafe {
ffi::gst_stream_set_stream_flags(self.to_glib_none().0, flags.to_glib());
}
}
2017-10-01 13:52:15 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
pub fn set_stream_type(&self, stream_type: StreamType) {
2017-07-04 22:47:33 +00:00
unsafe {
ffi::gst_stream_set_stream_type(self.to_glib_none().0, stream_type.to_glib());
}
}
2017-10-01 13:52:15 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
pub fn set_tags<'a, P: Into<Option<&'a TagList>>>(&self, tags: P) {
let tags = tags.into();
unsafe {
2019-01-16 11:32:39 +00:00
ffi::gst_stream_set_tags(self.to_glib_none().0, tags.to_glib_none().0);
}
}
pub fn get_property_caps(&self) -> Option<Caps> {
unsafe {
2018-02-06 14:42:34 +00:00
let mut value = Value::from_type(<Caps as StaticType>::static_type());
2019-01-16 11:32:39 +00:00
gobject_ffi::g_object_get_property(self.as_ptr() as *mut gobject_ffi::GObject, b"caps\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get()
}
}
pub fn set_property_caps(&self, caps: Option<&Caps>) {
unsafe {
2019-01-16 11:32:39 +00:00
gobject_ffi::g_object_set_property(self.as_ptr() as *mut gobject_ffi::GObject, b"caps\0".as_ptr() as *const _, Value::from(caps).to_glib_none().0);
}
}
pub fn get_property_stream_flags(&self) -> StreamFlags {
unsafe {
2018-02-06 14:42:34 +00:00
let mut value = Value::from_type(<StreamFlags as StaticType>::static_type());
2019-01-16 11:32:39 +00:00
gobject_ffi::g_object_get_property(self.as_ptr() as *mut gobject_ffi::GObject, b"stream-flags\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
pub fn set_property_stream_flags(&self, stream_flags: StreamFlags) {
unsafe {
2019-01-16 11:32:39 +00:00
gobject_ffi::g_object_set_property(self.as_ptr() as *mut gobject_ffi::GObject, b"stream-flags\0".as_ptr() as *const _, Value::from(&stream_flags).to_glib_none().0);
}
}
pub fn get_property_stream_id(&self) -> Option<GString> {
unsafe {
let mut value = Value::from_type(<GString as StaticType>::static_type());
2019-01-16 11:32:39 +00:00
gobject_ffi::g_object_get_property(self.as_ptr() as *mut gobject_ffi::GObject, b"stream-id\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get()
}
}
pub fn get_property_stream_type(&self) -> StreamType {
unsafe {
2018-02-06 14:42:34 +00:00
let mut value = Value::from_type(<StreamType as StaticType>::static_type());
2019-01-16 11:32:39 +00:00
gobject_ffi::g_object_get_property(self.as_ptr() as *mut gobject_ffi::GObject, b"stream-type\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get().unwrap()
}
}
pub fn set_property_stream_type(&self, stream_type: StreamType) {
unsafe {
2019-01-16 11:32:39 +00:00
gobject_ffi::g_object_set_property(self.as_ptr() as *mut gobject_ffi::GObject, b"stream-type\0".as_ptr() as *const _, Value::from(&stream_type).to_glib_none().0);
}
}
pub fn get_property_tags(&self) -> Option<TagList> {
unsafe {
2018-02-06 14:42:34 +00:00
let mut value = Value::from_type(<TagList as StaticType>::static_type());
2019-01-16 11:32:39 +00:00
gobject_ffi::g_object_get_property(self.as_ptr() as *mut gobject_ffi::GObject, b"tags\0".as_ptr() as *const _, value.to_glib_none_mut().0);
value.get()
}
}
pub fn set_property_tags(&self, tags: Option<&TagList>) {
unsafe {
2019-01-16 11:32:39 +00:00
gobject_ffi::g_object_set_property(self.as_ptr() as *mut gobject_ffi::GObject, b"tags\0".as_ptr() as *const _, Value::from(tags).to_glib_none().0);
}
}
2017-09-09 13:01:32 +00:00
pub fn connect_property_caps_notify<F: Fn(&Stream) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
2019-01-16 11:32:39 +00:00
connect_raw(self.as_ptr() as *mut _, b"notify::caps\0".as_ptr() as *const _,
2019-01-29 13:53:44 +00:00
Some(transmute(notify_caps_trampoline::<F> as usize)), Box_::into_raw(f))
}
}
2017-09-09 13:01:32 +00:00
pub fn connect_property_stream_flags_notify<F: Fn(&Stream) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
2019-01-16 11:32:39 +00:00
connect_raw(self.as_ptr() as *mut _, b"notify::stream-flags\0".as_ptr() as *const _,
2019-01-29 13:53:44 +00:00
Some(transmute(notify_stream_flags_trampoline::<F> as usize)), Box_::into_raw(f))
}
}
2017-09-09 13:01:32 +00:00
pub fn connect_property_stream_type_notify<F: Fn(&Stream) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
2019-01-16 11:32:39 +00:00
connect_raw(self.as_ptr() as *mut _, b"notify::stream-type\0".as_ptr() as *const _,
2019-01-29 13:53:44 +00:00
Some(transmute(notify_stream_type_trampoline::<F> as usize)), Box_::into_raw(f))
}
}
2017-09-09 13:01:32 +00:00
pub fn connect_property_tags_notify<F: Fn(&Stream) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
2019-01-16 11:32:39 +00:00
connect_raw(self.as_ptr() as *mut _, b"notify::tags\0".as_ptr() as *const _,
2019-01-29 13:53:44 +00:00
Some(transmute(notify_tags_trampoline::<F> as usize)), Box_::into_raw(f))
}
}
2017-07-04 22:47:33 +00:00
}
unsafe impl Send for Stream {}
unsafe impl Sync for Stream {}
2019-01-29 13:53:44 +00:00
unsafe extern "C" fn notify_caps_trampoline<F: Fn(&Stream) + Send + Sync + 'static>(this: *mut ffi::GstStream, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
let f: &F = transmute(f);
2017-09-09 13:01:32 +00:00
f(&from_glib_borrow(this))
}
2019-01-29 13:53:44 +00:00
unsafe extern "C" fn notify_stream_flags_trampoline<F: Fn(&Stream) + Send + Sync + 'static>(this: *mut ffi::GstStream, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
let f: &F = transmute(f);
2017-09-09 13:01:32 +00:00
f(&from_glib_borrow(this))
}
2019-01-29 13:53:44 +00:00
unsafe extern "C" fn notify_stream_type_trampoline<F: Fn(&Stream) + Send + Sync + 'static>(this: *mut ffi::GstStream, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
let f: &F = transmute(f);
2017-09-09 13:01:32 +00:00
f(&from_glib_borrow(this))
}
2019-01-29 13:53:44 +00:00
unsafe extern "C" fn notify_tags_trampoline<F: Fn(&Stream) + Send + Sync + 'static>(this: *mut ffi::GstStream, _param_spec: glib_ffi::gpointer, f: glib_ffi::gpointer) {
let f: &F = transmute(f);
2017-09-09 13:01:32 +00:00
f(&from_glib_borrow(this))
}