2018-08-01 16:18:15 +00:00
|
|
|
// Copyright (C) 2018 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.
|
|
|
|
|
2019-01-16 13:23:53 +00:00
|
|
|
use glib::object::IsA;
|
2018-08-01 16:18:15 +00:00
|
|
|
use glib::translate::*;
|
|
|
|
use gst;
|
2019-03-19 07:58:20 +00:00
|
|
|
use gst_base_sys;
|
|
|
|
use gst_sys;
|
2018-08-01 16:18:15 +00:00
|
|
|
use AggregatorPad;
|
|
|
|
|
2018-12-08 09:22:42 +00:00
|
|
|
pub trait AggregatorPadExtManual: 'static {
|
2018-08-01 16:18:15 +00:00
|
|
|
fn get_segment(&self) -> gst::Segment;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<O: IsA<AggregatorPad>> AggregatorPadExtManual for O {
|
|
|
|
fn get_segment(&self) -> gst::Segment {
|
|
|
|
unsafe {
|
2019-03-19 07:58:20 +00:00
|
|
|
let ptr: &gst_base_sys::GstAggregatorPad = &*(self.as_ptr() as *const _);
|
2020-02-27 10:10:14 +00:00
|
|
|
let _guard = ::utils::MutexGuard::lock(&ptr.parent.object.lock);
|
2019-03-19 07:58:20 +00:00
|
|
|
from_glib_none(&ptr.segment as *const gst_sys::GstSegment)
|
2018-08-01 16:18:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|