2017-10-10 15:52:54 +00:00
|
|
|
// Copyright (C) 2017 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
2017-09-09 13:54:02 +00:00
|
|
|
|
|
|
|
use glib::object::IsA;
|
|
|
|
use glib::translate::*;
|
2019-03-19 07:58:20 +00:00
|
|
|
use gobject_sys;
|
2017-09-09 13:54:02 +00:00
|
|
|
use gst;
|
2019-03-19 07:58:20 +00:00
|
|
|
use gst_base_sys;
|
2017-09-09 13:54:02 +00:00
|
|
|
|
|
|
|
glib_wrapper! {
|
2019-01-22 15:43:29 +00:00
|
|
|
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
2019-03-19 07:58:20 +00:00
|
|
|
pub struct FlowCombiner(Shared<gst_base_sys::GstFlowCombiner>);
|
2017-09-09 13:54:02 +00:00
|
|
|
|
|
|
|
match fn {
|
2019-03-19 07:58:20 +00:00
|
|
|
ref => |ptr| gobject_sys::g_boxed_copy(gst_base_sys::gst_flow_combiner_get_type(), ptr as *mut _),
|
|
|
|
unref => |ptr| gobject_sys::g_boxed_free(gst_base_sys::gst_flow_combiner_get_type(), ptr as *mut _),
|
|
|
|
get_type => || gst_base_sys::gst_flow_combiner_get_type(),
|
2017-09-09 13:54:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FlowCombiner {
|
|
|
|
pub fn new() -> FlowCombiner {
|
|
|
|
assert_initialized_main_thread!();
|
2019-03-19 07:58:20 +00:00
|
|
|
unsafe { from_glib_full(gst_base_sys::gst_flow_combiner_new()) }
|
2017-09-09 13:54:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn add_pad<P: IsA<gst::Pad>>(&self, pad: &P) {
|
|
|
|
unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
gst_base_sys::gst_flow_combiner_add_pad(
|
|
|
|
self.to_glib_none().0,
|
|
|
|
pad.as_ref().to_glib_none().0,
|
|
|
|
);
|
2017-09-09 13:54:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn clear(&self) {
|
|
|
|
unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
gst_base_sys::gst_flow_combiner_clear(self.to_glib_none().0);
|
2017-09-09 13:54:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn remove_pad<P: IsA<gst::Pad>>(&self, pad: &P) {
|
|
|
|
unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
gst_base_sys::gst_flow_combiner_remove_pad(
|
|
|
|
self.to_glib_none().0,
|
|
|
|
pad.as_ref().to_glib_none().0,
|
|
|
|
);
|
2017-09-09 13:54:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn reset(&self) {
|
|
|
|
unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
gst_base_sys::gst_flow_combiner_reset(self.to_glib_none().0);
|
2017-09-09 13:54:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-08 16:13:37 +00:00
|
|
|
pub fn update_flow<FRet: Into<gst::FlowReturn>>(
|
|
|
|
&self,
|
|
|
|
fret: FRet,
|
|
|
|
) -> Result<gst::FlowSuccess, gst::FlowError> {
|
|
|
|
let fret: gst::FlowReturn = fret.into();
|
|
|
|
let ret: gst::FlowReturn = unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
from_glib(gst_base_sys::gst_flow_combiner_update_flow(
|
2017-10-17 09:06:51 +00:00
|
|
|
self.to_glib_none().0,
|
|
|
|
fret.to_glib(),
|
|
|
|
))
|
2019-01-08 16:13:37 +00:00
|
|
|
};
|
|
|
|
ret.into_result()
|
2017-09-09 13:54:02 +00:00
|
|
|
}
|
|
|
|
|
2019-01-08 16:13:37 +00:00
|
|
|
pub fn update_pad_flow<P: IsA<gst::Pad>, FRet: Into<gst::FlowReturn>>(
|
2017-10-17 09:06:51 +00:00
|
|
|
&self,
|
|
|
|
pad: &P,
|
2019-01-08 16:13:37 +00:00
|
|
|
fret: FRet,
|
|
|
|
) -> Result<gst::FlowSuccess, gst::FlowError> {
|
|
|
|
let fret: gst::FlowReturn = fret.into();
|
|
|
|
let ret: gst::FlowReturn = unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
from_glib(gst_base_sys::gst_flow_combiner_update_pad_flow(
|
2017-10-17 09:06:51 +00:00
|
|
|
self.to_glib_none().0,
|
2019-01-16 11:32:58 +00:00
|
|
|
pad.as_ref().to_glib_none().0,
|
2017-10-17 09:06:51 +00:00
|
|
|
fret.to_glib(),
|
|
|
|
))
|
2019-01-08 16:13:37 +00:00
|
|
|
};
|
|
|
|
ret.into_result()
|
2017-09-09 13:54:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for FlowCombiner {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|
2019-01-03 09:11:48 +00:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct UniqueFlowCombiner(FlowCombiner);
|
|
|
|
|
|
|
|
unsafe impl Sync for UniqueFlowCombiner {}
|
|
|
|
unsafe impl Send for UniqueFlowCombiner {}
|
|
|
|
|
|
|
|
impl UniqueFlowCombiner {
|
|
|
|
pub fn new() -> UniqueFlowCombiner {
|
|
|
|
UniqueFlowCombiner(FlowCombiner::new())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn add_pad<P: IsA<gst::Pad>>(&mut self, pad: &P) {
|
|
|
|
self.0.add_pad(pad);
|
|
|
|
}
|
|
|
|
|
2020-02-09 16:22:45 +00:00
|
|
|
pub fn clear(&mut self) {
|
2019-01-03 09:11:48 +00:00
|
|
|
self.0.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn remove_pad<P: IsA<gst::Pad>>(&mut self, pad: &P) {
|
|
|
|
self.0.remove_pad(pad);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn reset(&mut self) {
|
|
|
|
self.0.reset();
|
|
|
|
}
|
|
|
|
|
2019-01-08 16:13:37 +00:00
|
|
|
pub fn update_flow(
|
|
|
|
&mut self,
|
|
|
|
fret: Result<gst::FlowSuccess, gst::FlowError>,
|
|
|
|
) -> Result<gst::FlowSuccess, gst::FlowError> {
|
2019-01-03 09:11:48 +00:00
|
|
|
self.0.update_flow(fret)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn update_pad_flow<P: IsA<gst::Pad>>(
|
|
|
|
&mut self,
|
|
|
|
pad: &P,
|
2019-01-08 16:13:37 +00:00
|
|
|
fret: Result<gst::FlowSuccess, gst::FlowError>,
|
|
|
|
) -> Result<gst::FlowSuccess, gst::FlowError> {
|
2019-01-03 09:11:48 +00:00
|
|
|
self.0.update_pad_flow(pad, fret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for UniqueFlowCombiner {
|
|
|
|
fn default() -> Self {
|
|
|
|
Self::new()
|
|
|
|
}
|
|
|
|
}
|