2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
2018-08-01 16:18:15 +00:00
|
|
|
|
2020-11-21 17:59:22 +00:00
|
|
|
use crate::AggregatorPad;
|
2021-04-26 12:15:53 +00:00
|
|
|
use glib::prelude::*;
|
2018-08-01 16:18:15 +00:00
|
|
|
use glib::translate::*;
|
|
|
|
|
2018-12-08 09:22:42 +00:00
|
|
|
pub trait AggregatorPadExtManual: 'static {
|
2021-05-02 09:41:18 +00:00
|
|
|
#[doc(alias = "get_segment")]
|
2021-04-11 19:39:50 +00:00
|
|
|
fn segment(&self) -> gst::Segment;
|
2018-08-01 16:18:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<O: IsA<AggregatorPad>> AggregatorPadExtManual for O {
|
2021-04-11 19:39:50 +00:00
|
|
|
fn segment(&self) -> gst::Segment {
|
2018-08-01 16:18:15 +00:00
|
|
|
unsafe {
|
2020-11-21 17:59:22 +00:00
|
|
|
let ptr: &ffi::GstAggregatorPad = &*(self.as_ptr() as *const _);
|
|
|
|
let _guard = crate::utils::MutexGuard::lock(&ptr.parent.object.lock);
|
|
|
|
from_glib_none(&ptr.segment as *const gst::ffi::GstSegment)
|
2018-08-01 16:18:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|