2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
2019-09-13 19:51:10 +00:00
|
|
|
|
2023-01-03 18:58:25 +00:00
|
|
|
use std::{mem, ptr};
|
|
|
|
|
|
|
|
use glib::{prelude::*, translate::*};
|
|
|
|
|
|
|
|
use crate::{AudioDecoder, AudioInfo};
|
2019-09-13 19:51:10 +00:00
|
|
|
|
2019-09-15 07:18:42 +00:00
|
|
|
extern "C" {
|
|
|
|
fn _gst_audio_decoder_error(
|
2020-11-21 18:17:20 +00:00
|
|
|
dec: *mut ffi::GstAudioDecoder,
|
2019-09-15 07:18:42 +00:00
|
|
|
weight: i32,
|
2020-11-21 18:17:20 +00:00
|
|
|
domain: glib::ffi::GQuark,
|
2019-09-15 07:18:42 +00:00
|
|
|
code: i32,
|
|
|
|
txt: *mut libc::c_char,
|
|
|
|
debug: *mut libc::c_char,
|
|
|
|
file: *const libc::c_char,
|
|
|
|
function: *const libc::c_char,
|
|
|
|
line: i32,
|
2020-11-21 18:17:20 +00:00
|
|
|
) -> gst::ffi::GstFlowReturn;
|
2019-09-15 07:18:42 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 20:21:43 +00:00
|
|
|
mod sealed {
|
|
|
|
pub trait Sealed {}
|
|
|
|
impl<T: super::IsA<super::AudioDecoder>> Sealed for T {}
|
2019-09-13 19:51:10 +00:00
|
|
|
}
|
|
|
|
|
2023-07-05 20:21:43 +00:00
|
|
|
pub trait AudioDecoderExtManual: sealed::Sealed + IsA<AudioDecoder> + 'static {
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_audio_decoder_negotiate")]
|
2019-09-13 19:51:10 +00:00
|
|
|
fn negotiate(&self) -> Result<(), gst::FlowError> {
|
|
|
|
unsafe {
|
2020-11-21 18:17:20 +00:00
|
|
|
let ret = from_glib(ffi::gst_audio_decoder_negotiate(
|
2019-09-13 19:51:10 +00:00
|
|
|
self.as_ref().to_glib_none().0,
|
|
|
|
));
|
|
|
|
if ret {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(gst::FlowError::NotNegotiated)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-04 05:55:48 +00:00
|
|
|
#[cfg(feature = "v1_16")]
|
|
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_audio_decoder_set_output_caps")]
|
2019-09-13 19:51:10 +00:00
|
|
|
fn set_output_caps(&self, caps: &gst::Caps) -> Result<(), gst::FlowError> {
|
|
|
|
unsafe {
|
2020-11-21 18:17:20 +00:00
|
|
|
let ret = from_glib(ffi::gst_audio_decoder_set_output_caps(
|
2019-09-13 19:51:10 +00:00
|
|
|
self.as_ref().to_glib_none().0,
|
|
|
|
caps.to_glib_none().0,
|
|
|
|
));
|
|
|
|
if ret {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(gst::FlowError::NotNegotiated)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_audio_decoder_set_output_format")]
|
2019-09-13 19:51:10 +00:00
|
|
|
fn set_output_format(&self, info: &AudioInfo) -> Result<(), gst::FlowError> {
|
|
|
|
unsafe {
|
2020-11-21 18:17:20 +00:00
|
|
|
let ret = from_glib(ffi::gst_audio_decoder_set_output_format(
|
2019-09-13 19:51:10 +00:00
|
|
|
self.as_ref().to_glib_none().0,
|
|
|
|
info.to_glib_none().0,
|
|
|
|
));
|
|
|
|
if ret {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(gst::FlowError::NotNegotiated)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-07-05 20:21:43 +00:00
|
|
|
#[doc(alias = "get_allocator")]
|
2021-05-19 20:35:47 +00:00
|
|
|
#[doc(alias = "gst_audio_decoder_get_allocator")]
|
2021-04-11 19:39:50 +00:00
|
|
|
fn allocator(&self) -> (Option<gst::Allocator>, gst::AllocationParams) {
|
2019-09-13 19:51:10 +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 18:17:20 +00:00
|
|
|
ffi::gst_audio_decoder_get_allocator(
|
2019-09-13 19:51:10 +00:00
|
|
|
self.as_ref().to_glib_none().0,
|
|
|
|
&mut allocator,
|
2023-01-06 12:11:45 +00:00
|
|
|
params.as_mut_ptr(),
|
2019-09-13 19:51:10 +00:00
|
|
|
);
|
2023-01-06 12:11:45 +00:00
|
|
|
(from_glib_full(allocator), params.assume_init().into())
|
2019-09-13 19:51:10 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-15 07:18:42 +00:00
|
|
|
|
2023-07-05 20:21:43 +00:00
|
|
|
#[allow(clippy::too_many_arguments)]
|
2019-09-15 07:18:42 +00:00
|
|
|
fn error<T: gst::MessageErrorDomain>(
|
|
|
|
&self,
|
|
|
|
weight: i32,
|
|
|
|
code: T,
|
|
|
|
message: Option<&str>,
|
|
|
|
debug: Option<&str>,
|
|
|
|
file: &str,
|
|
|
|
function: &str,
|
|
|
|
line: u32,
|
|
|
|
) -> Result<gst::FlowSuccess, gst::FlowError> {
|
2021-04-28 12:34:56 +00:00
|
|
|
unsafe {
|
2021-05-13 12:54:41 +00:00
|
|
|
try_from_glib(_gst_audio_decoder_error(
|
2019-09-15 07:18:42 +00:00
|
|
|
self.as_ref().to_glib_none().0,
|
|
|
|
weight,
|
2021-04-27 15:15:46 +00:00
|
|
|
T::domain().into_glib(),
|
2019-09-15 07:18:42 +00:00
|
|
|
code.code(),
|
|
|
|
message.to_glib_full(),
|
|
|
|
debug.to_glib_full(),
|
|
|
|
file.to_glib_none().0,
|
|
|
|
function.to_glib_none().0,
|
|
|
|
line as i32,
|
|
|
|
))
|
2021-04-28 12:34:56 +00:00
|
|
|
}
|
2019-09-15 07:18:42 +00:00
|
|
|
}
|
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::GstAudioDecoder);
|
|
|
|
&*(&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::GstAudioDecoder);
|
|
|
|
&*(&elt.srcpad as *const *mut gst::ffi::GstPad as *const gst::Pad)
|
2022-05-03 22:04:08 +00:00
|
|
|
}
|
|
|
|
}
|
2019-09-13 19:51:10 +00:00
|
|
|
}
|
2019-09-15 07:18:42 +00:00
|
|
|
|
2023-07-05 20:21:43 +00:00
|
|
|
impl<O: IsA<AudioDecoder>> AudioDecoderExtManual for O {}
|
|
|
|
|
2019-09-15 07:18:42 +00:00
|
|
|
#[macro_export]
|
2020-12-20 15:09:22 +00:00
|
|
|
macro_rules! audio_decoder_error(
|
2019-09-15 07:18:42 +00:00
|
|
|
($obj:expr, $weight:expr, $err:expr, ($($msg:tt)*), [$($debug:tt)*]) => { {
|
2021-04-26 11:56:12 +00:00
|
|
|
use $crate::prelude::AudioDecoderExtManual;
|
2019-09-15 07:18:42 +00:00
|
|
|
$obj.error(
|
|
|
|
$weight,
|
|
|
|
$err,
|
|
|
|
Some(&format!($($msg)*)),
|
|
|
|
Some(&format!($($debug)*)),
|
|
|
|
file!(),
|
2023-01-16 09:10:21 +00:00
|
|
|
$crate::glib::function_name!(),
|
2019-09-15 07:18:42 +00:00
|
|
|
line!(),
|
|
|
|
)
|
|
|
|
}};
|
|
|
|
($obj:expr, $weight:expr, $err:expr, ($($msg:tt)*)) => { {
|
2021-04-26 11:56:12 +00:00
|
|
|
use $crate::prelude::AudioDecoderExtManual;
|
2019-09-15 07:18:42 +00:00
|
|
|
$obj.error(
|
|
|
|
$weight,
|
|
|
|
$err,
|
|
|
|
Some(&format!($($msg)*)),
|
|
|
|
None,
|
|
|
|
file!(),
|
2023-01-16 09:10:21 +00:00
|
|
|
$crate::glib::function_name!(),
|
2019-09-15 07:18:42 +00:00
|
|
|
line!(),
|
|
|
|
)
|
|
|
|
}};
|
|
|
|
($obj:expr, $weight:expr, $err:expr, [$($debug:tt)*]) => { {
|
2021-04-26 11:56:12 +00:00
|
|
|
use $crate::prelude::AudioDecoderExtManual;
|
2019-09-15 07:18:42 +00:00
|
|
|
$obj.error(
|
|
|
|
$weight,
|
|
|
|
$err,
|
|
|
|
None,
|
|
|
|
Some(&format!($($debug)*)),
|
|
|
|
file!(),
|
2023-01-16 09:10:21 +00:00
|
|
|
$crate::glib::function_name!(),
|
2019-09-15 07:18:42 +00:00
|
|
|
line!(),
|
|
|
|
)
|
|
|
|
}};
|
|
|
|
);
|