gstreamer-rs/gstreamer-audio/src/audio_aggregator_convert_pad.rs
Bilal Elmoussaoui 4ebec84f5e Adapt to no longer renamed ffi crates
Allows us to set all the crates in the main workspace file, so changing
their versions or branch is much simpler and reduce the amount of noise
in the diff

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1450>
2024-06-02 11:20:55 +02:00

65 lines
2 KiB
Rust

use std::mem::transmute;
use glib::{
prelude::*,
signal::{connect_raw, SignalHandlerId},
translate::*,
};
use crate::{ffi, AudioAggregatorConvertPad};
mod sealed {
pub trait Sealed {}
impl<T: super::IsA<super::AudioAggregatorConvertPad>> Sealed for T {}
}
pub trait AudioAggregatorConvertPadExtManual:
sealed::Sealed + IsA<AudioAggregatorConvertPad> + 'static
{
#[doc(alias = "converter-config")]
fn converter_config(&self) -> Option<crate::AudioConverterConfig> {
ObjectExt::property::<Option<gst::Structure>>(self.as_ref(), "converter-config")
.map(|c| c.try_into().unwrap())
}
#[doc(alias = "converter-config")]
fn set_converter_config(&self, converter_config: Option<&crate::AudioConverterConfig>) {
ObjectExt::set_property(
self.as_ref(),
"converter-config",
converter_config.map(|s| s.as_ref()),
)
}
#[doc(alias = "converter-config")]
fn connect_converter_config_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_converter_config_trampoline<
P: IsA<AudioAggregatorConvertPad>,
F: Fn(&P) + Send + Sync + 'static,
>(
this: *mut ffi::GstAudioAggregatorConvertPad,
_param_spec: glib::ffi::gpointer,
f: glib::ffi::gpointer,
) {
let f: &F = &*(f as *const F);
f(AudioAggregatorConvertPad::from_glib_borrow(this).unsafe_cast_ref())
}
unsafe {
let f: Box<F> = Box::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::converter-config\0".as_ptr() as *const _,
Some(transmute::<_, unsafe extern "C" fn()>(
notify_converter_config_trampoline::<Self, F> as *const (),
)),
Box::into_raw(f),
)
}
}
}
impl<O: IsA<AudioAggregatorConvertPad>> AudioAggregatorConvertPadExtManual for O {}