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
use crate::auto::AudioAggregatorPad;
use glib::object::IsA;
use glib::translate::*;

pub trait AudioAggregatorPadExtManual: 'static {
    fn audio_info(&self) -> Option<crate::AudioInfo>;
}

impl<O: IsA<AudioAggregatorPad>> AudioAggregatorPadExtManual for O {
    fn audio_info(&self) -> Option<crate::AudioInfo> {
        unsafe {
            let ptr = self.as_ptr() as *mut ffi::GstAudioAggregatorPad;
            let _guard = crate::utils::MutexGuard::lock(&(*(ptr as *mut gst::ffi::GstObject)).lock);

            let info = &(*ptr).info;

            if !info.finfo.is_null() && info.channels > 0 && info.rate > 0 && info.bpf > 0 {
                return None;
            }

            Some(from_glib_none(mut_override(
                info as *const ffi::GstAudioInfo,
            )))
        }
    }
}