1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
// Take a look at the license at the top of the repository in the LICENSE file.
use std::mem;
use glib::{prelude::*, translate::*};
use gst::prelude::*;
use crate::{ffi, BaseSink};
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::BaseSink>> Sealed for T {}
}
pub trait BaseSinkExtManual: sealed::Sealed + IsA<BaseSink> + 'static {
#[doc(alias = "get_segment")]
fn segment(&self) -> gst::Segment {
unsafe {
let sink: &ffi::GstBaseSink = &*(self.as_ptr() as *const _);
let sinkpad = self.sink_pad();
let _guard = sinkpad.stream_lock();
from_glib_none(&sink.segment as *const gst::ffi::GstSegment)
}
}
/// Query the sink for the latency parameters. The latency will be queried from
/// the upstream elements. `live` will be [`true`] if `self` is configured to
/// synchronize against the clock. `upstream_live` will be [`true`] if an upstream
/// element is live.
///
/// If both `live` and `upstream_live` are [`true`], the sink will want to compensate
/// for the latency introduced by the upstream elements by setting the
/// `min_latency` to a strictly positive value.
///
/// This function is mostly used by subclasses.
///
/// # Returns
///
/// [`true`] if the query succeeded.
///
/// ## `live`
/// if the sink is live
///
/// ## `upstream_live`
/// if an upstream element is live
///
/// ## `min_latency`
/// the min latency of the upstream elements
///
/// ## `max_latency`
/// the max latency of the upstream elements
#[doc(alias = "gst_base_sink_query_latency")]
fn query_latency(
&self,
) -> Result<(bool, bool, Option<gst::ClockTime>, Option<gst::ClockTime>), glib::BoolError> {
unsafe {
let mut live = mem::MaybeUninit::uninit();
let mut upstream_live = mem::MaybeUninit::uninit();
let mut min_latency = mem::MaybeUninit::uninit();
let mut max_latency = mem::MaybeUninit::uninit();
let ret = from_glib(ffi::gst_base_sink_query_latency(
self.as_ref().to_glib_none().0,
live.as_mut_ptr(),
upstream_live.as_mut_ptr(),
min_latency.as_mut_ptr(),
max_latency.as_mut_ptr(),
));
let live = live.assume_init();
let upstream_live = upstream_live.assume_init();
let min_latency = min_latency.assume_init();
let max_latency = max_latency.assume_init();
if ret {
Ok((
from_glib(live),
from_glib(upstream_live),
from_glib(min_latency),
from_glib(max_latency),
))
} else {
Err(glib::bool_error!("Failed to query latency"))
}
}
}
fn sink_pad(&self) -> &gst::Pad {
unsafe {
let elt = &*(self.as_ptr() as *const ffi::GstBaseSink);
&*(&elt.sinkpad as *const *mut gst::ffi::GstPad as *const gst::Pad)
}
}
}
impl<O: IsA<BaseSink>> BaseSinkExtManual for O {}