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-02-12 08:44:44 +00:00
|
|
|
|
2023-01-03 18:58:25 +00:00
|
|
|
use std::{mem, ptr};
|
|
|
|
|
|
|
|
use glib::{prelude::*, translate::*};
|
2023-02-06 08:49:34 +00:00
|
|
|
use gst::prelude::*;
|
2023-01-03 18:58:25 +00:00
|
|
|
|
2024-06-02 08:48:53 +00:00
|
|
|
use crate::{ffi, BaseTransform};
|
2018-02-12 08:44:44 +00:00
|
|
|
|
2024-10-19 15:09:56 +00:00
|
|
|
pub trait BaseTransformExtManual: IsA<BaseTransform> + 'static {
|
2023-07-05 20:21:43 +00:00
|
|
|
#[doc(alias = "get_allocator")]
|
|
|
|
#[doc(alias = "gst_base_transform_get_allocator")]
|
2021-04-11 19:39:50 +00:00
|
|
|
fn allocator(&self) -> (Option<gst::Allocator>, gst::AllocationParams) {
|
2020-03-29 19:37:56 +00:00
|
|
|
unsafe {
|
|
|
|
let mut allocator = ptr::null_mut();
|
2023-01-06 12:11:45 +00:00
|
|
|
let mut params = mem::MaybeUninit::uninit();
|
2020-11-21 17:59:22 +00:00
|
|
|
ffi::gst_base_transform_get_allocator(
|
2020-03-29 19:37:56 +00:00
|
|
|
self.as_ref().to_glib_none().0,
|
|
|
|
&mut allocator,
|
2023-01-06 12:11:45 +00:00
|
|
|
params.as_mut_ptr(),
|
2020-03-29 19:37:56 +00:00
|
|
|
);
|
2023-01-06 12:11:45 +00:00
|
|
|
(from_glib_full(allocator), params.assume_init().into())
|
2020-03-29 19:37:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-05 20:21:43 +00:00
|
|
|
#[doc(alias = "get_segment")]
|
2021-04-11 19:39:50 +00:00
|
|
|
fn segment(&self) -> gst::Segment {
|
2018-02-12 08:44:44 +00:00
|
|
|
unsafe {
|
2020-11-21 17:59:22 +00:00
|
|
|
let trans: &ffi::GstBaseTransform = &*(self.as_ptr() as *const _);
|
2024-01-05 13:35:40 +00:00
|
|
|
let sinkpad = self.sink_pad();
|
|
|
|
let _guard = sinkpad.stream_lock();
|
2018-02-12 08:44:44 +00:00
|
|
|
from_glib_none(&trans.segment as *const _)
|
|
|
|
}
|
|
|
|
}
|
2022-05-03 22:04:08 +00:00
|
|
|
|
2022-05-05 10:24:46 +00:00
|
|
|
fn sink_pad(&self) -> &gst::Pad {
|
2022-05-03 22:04:08 +00:00
|
|
|
unsafe {
|
2022-05-05 10:24:46 +00:00
|
|
|
let elt = &*(self.as_ptr() as *const ffi::GstBaseTransform);
|
|
|
|
&*(&elt.sinkpad as *const *mut gst::ffi::GstPad as *const gst::Pad)
|
2022-05-03 22:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-05 10:24:46 +00:00
|
|
|
fn src_pad(&self) -> &gst::Pad {
|
2022-05-03 22:04:08 +00:00
|
|
|
unsafe {
|
2022-05-05 10:24:46 +00:00
|
|
|
let elt = &*(self.as_ptr() as *const ffi::GstBaseTransform);
|
|
|
|
&*(&elt.srcpad as *const *mut gst::ffi::GstPad as *const gst::Pad)
|
2022-05-03 22:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
2018-02-12 08:44:44 +00:00
|
|
|
}
|
2023-07-05 20:21:43 +00:00
|
|
|
|
|
|
|
impl<O: IsA<BaseTransform>> BaseTransformExtManual for O {}
|