gstreamer-rs/gstreamer/src/auto/pipeline.rs

224 lines
6.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)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
// DO NOT EDIT
use crate::{Bin, ChildProxy, Clock, ClockTime, Element, Object};
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use std::boxed::Box as Box_;
2020-12-17 22:34:53 +00:00
glib::wrapper! {
#[doc(alias = "GstPipeline")]
2020-11-21 13:46:33 +00:00
pub struct Pipeline(Object<ffi::GstPipeline, ffi::GstPipelineClass>) @extends Bin, Element, Object, @implements ChildProxy;
match fn {
type_ => || ffi::gst_pipeline_get_type(),
}
}
impl Pipeline {
2021-11-16 14:02:58 +00:00
pub const NONE: Option<&'static Pipeline> = None;
}
2017-06-29 06:02:08 +00:00
unsafe impl Send for Pipeline {}
unsafe impl Sync for Pipeline {}
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::Pipeline>> Sealed for T {}
}
pub trait PipelineExt: IsA<Pipeline> + sealed::Sealed + 'static {
#[doc(alias = "gst_pipeline_auto_clock")]
fn auto_clock(&self) {
unsafe {
2020-11-21 13:46:33 +00:00
ffi::gst_pipeline_auto_clock(self.as_ref().to_glib_none().0);
}
}
#[doc(alias = "gst_pipeline_get_auto_flush_bus")]
#[doc(alias = "get_auto_flush_bus")]
2021-04-11 19:38:18 +00:00
fn is_auto_flush_bus(&self) -> bool {
unsafe {
2020-11-21 13:46:33 +00:00
from_glib(ffi::gst_pipeline_get_auto_flush_bus(
self.as_ref().to_glib_none().0,
))
}
}
#[cfg(feature = "v1_24")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
#[doc(alias = "gst_pipeline_get_configured_latency")]
#[doc(alias = "get_configured_latency")]
fn configured_latency(&self) -> Option<ClockTime> {
unsafe {
from_glib(ffi::gst_pipeline_get_configured_latency(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gst_pipeline_get_delay")]
#[doc(alias = "get_delay")]
2021-04-11 19:38:18 +00:00
fn delay(&self) -> ClockTime {
unsafe {
try_from_glib(ffi::gst_pipeline_get_delay(self.as_ref().to_glib_none().0))
.expect("mandatory glib value is None")
}
}
#[doc(alias = "gst_pipeline_get_latency")]
#[doc(alias = "get_latency")]
fn latency(&self) -> Option<ClockTime> {
unsafe {
2020-11-21 13:46:33 +00:00
from_glib(ffi::gst_pipeline_get_latency(
self.as_ref().to_glib_none().0,
))
}
}
#[doc(alias = "gst_pipeline_get_pipeline_clock")]
#[doc(alias = "get_pipeline_clock")]
2021-04-11 19:38:18 +00:00
fn pipeline_clock(&self) -> Clock {
unsafe {
2020-11-21 13:46:33 +00:00
from_glib_full(ffi::gst_pipeline_get_pipeline_clock(
self.as_ref().to_glib_none().0,
))
}
}
#[cfg(feature = "v1_24")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_24")))]
#[doc(alias = "gst_pipeline_is_live")]
fn is_live(&self) -> bool {
unsafe { from_glib(ffi::gst_pipeline_is_live(self.as_ref().to_glib_none().0)) }
}
#[doc(alias = "gst_pipeline_set_auto_flush_bus")]
fn set_auto_flush_bus(&self, auto_flush: bool) {
unsafe {
2020-11-21 13:46:33 +00:00
ffi::gst_pipeline_set_auto_flush_bus(
self.as_ref().to_glib_none().0,
auto_flush.into_glib(),
);
}
}
#[doc(alias = "gst_pipeline_set_delay")]
fn set_delay(&self, delay: ClockTime) {
unsafe {
ffi::gst_pipeline_set_delay(self.as_ref().to_glib_none().0, delay.into_glib());
}
}
#[doc(alias = "gst_pipeline_set_latency")]
fn set_latency(&self, latency: impl Into<Option<ClockTime>>) {
unsafe {
ffi::gst_pipeline_set_latency(
self.as_ref().to_glib_none().0,
latency.into().into_glib(),
);
}
}
#[doc(alias = "gst_pipeline_use_clock")]
fn use_clock(&self, clock: Option<&impl IsA<Clock>>) {
unsafe {
2020-11-21 13:46:33 +00:00
ffi::gst_pipeline_use_clock(
self.as_ref().to_glib_none().0,
clock.map(|p| p.as_ref()).to_glib_none().0,
);
}
}
#[doc(alias = "auto-flush-bus")]
fn connect_auto_flush_bus_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_auto_flush_bus_trampoline<
P: IsA<Pipeline>,
F: Fn(&P) + Send + Sync + 'static,
>(
2020-11-21 13:46:33 +00:00
this: *mut ffi::GstPipeline,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
2021-06-21 21:07:45 +00:00
f(Pipeline::from_glib_borrow(this).unsafe_cast_ref())
2019-06-18 10:10:46 +00:00
}
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::auto-flush-bus\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
2020-04-13 16:11:33 +00:00
notify_auto_flush_bus_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "delay")]
fn connect_delay_notify<F: Fn(&Self) + Send + Sync + 'static>(&self, f: F) -> SignalHandlerId {
unsafe extern "C" fn notify_delay_trampoline<
P: IsA<Pipeline>,
F: Fn(&P) + Send + Sync + 'static,
>(
2020-11-21 13:46:33 +00:00
this: *mut ffi::GstPipeline,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
2021-06-21 21:07:45 +00:00
f(Pipeline::from_glib_borrow(this).unsafe_cast_ref())
2019-06-18 10:10:46 +00:00
}
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::delay\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
2020-04-13 16:11:33 +00:00
notify_delay_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
#[doc(alias = "latency")]
fn connect_latency_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_latency_trampoline<
P: IsA<Pipeline>,
F: Fn(&P) + Send + Sync + 'static,
>(
2020-11-21 13:46:33 +00:00
this: *mut ffi::GstPipeline,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
2019-06-18 10:10:46 +00:00
let f: &F = &*(f as *const F);
2021-06-21 21:07:45 +00:00
f(Pipeline::from_glib_borrow(this).unsafe_cast_ref())
2019-06-18 10:10:46 +00:00
}
unsafe {
2019-01-29 13:53:44 +00:00
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::latency\0".as_ptr() as *const _,
Some(std::mem::transmute::<_, unsafe extern "C" fn()>(
2020-04-13 16:11:33 +00:00
notify_latency_trampoline::<Self, F> as *const (),
)),
Box_::into_raw(f),
)
}
}
}
impl<O: IsA<Pipeline>> PipelineExt for O {}