mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-30 05:21:05 +00:00
95 lines
2.8 KiB
Rust
95 lines
2.8 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use crate::AudioEncoder;
|
|
use glib::object::IsA;
|
|
use glib::translate::*;
|
|
use std::mem;
|
|
use std::ptr;
|
|
|
|
pub trait AudioEncoderExtManual: 'static {
|
|
fn finish_frame(
|
|
&self,
|
|
buffer: Option<gst::Buffer>,
|
|
frames: i32,
|
|
) -> Result<gst::FlowSuccess, gst::FlowError>;
|
|
|
|
fn negotiate(&self) -> Result<(), gst::FlowError>;
|
|
|
|
fn set_output_format(&self, caps: &gst::Caps) -> Result<(), gst::FlowError>;
|
|
|
|
fn get_allocator(&self) -> (Option<gst::Allocator>, gst::AllocationParams);
|
|
|
|
fn get_latency(&self) -> (gst::ClockTime, gst::ClockTime);
|
|
}
|
|
|
|
impl<O: IsA<AudioEncoder>> AudioEncoderExtManual for O {
|
|
fn finish_frame(
|
|
&self,
|
|
buffer: Option<gst::Buffer>,
|
|
frames: i32,
|
|
) -> Result<gst::FlowSuccess, gst::FlowError> {
|
|
let ret: gst::FlowReturn = unsafe {
|
|
from_glib(ffi::gst_audio_encoder_finish_frame(
|
|
self.as_ref().to_glib_none().0,
|
|
buffer.map(|b| b.into_ptr()).unwrap_or(ptr::null_mut()),
|
|
frames,
|
|
))
|
|
};
|
|
ret.into_result()
|
|
}
|
|
|
|
fn negotiate(&self) -> Result<(), gst::FlowError> {
|
|
unsafe {
|
|
let ret = from_glib(ffi::gst_audio_encoder_negotiate(
|
|
self.as_ref().to_glib_none().0,
|
|
));
|
|
if ret {
|
|
Ok(())
|
|
} else {
|
|
Err(gst::FlowError::NotNegotiated)
|
|
}
|
|
}
|
|
}
|
|
|
|
fn set_output_format(&self, caps: &gst::Caps) -> Result<(), gst::FlowError> {
|
|
unsafe {
|
|
let ret = from_glib(ffi::gst_audio_encoder_set_output_format(
|
|
self.as_ref().to_glib_none().0,
|
|
caps.to_glib_none().0,
|
|
));
|
|
if ret {
|
|
Ok(())
|
|
} else {
|
|
Err(gst::FlowError::NotNegotiated)
|
|
}
|
|
}
|
|
}
|
|
|
|
fn get_allocator(&self) -> (Option<gst::Allocator>, gst::AllocationParams) {
|
|
unsafe {
|
|
let mut allocator = ptr::null_mut();
|
|
let mut params = mem::zeroed();
|
|
ffi::gst_audio_encoder_get_allocator(
|
|
self.as_ref().to_glib_none().0,
|
|
&mut allocator,
|
|
&mut params,
|
|
);
|
|
(from_glib_full(allocator), params.into())
|
|
}
|
|
}
|
|
|
|
fn get_latency(&self) -> (gst::ClockTime, gst::ClockTime) {
|
|
unsafe {
|
|
let mut min = mem::MaybeUninit::uninit();
|
|
let mut max = mem::MaybeUninit::uninit();
|
|
ffi::gst_audio_encoder_get_latency(
|
|
self.as_ref().to_glib_none().0,
|
|
min.as_mut_ptr(),
|
|
max.as_mut_ptr(),
|
|
);
|
|
let min = min.assume_init();
|
|
let max = max.assume_init();
|
|
(from_glib(min), from_glib(max))
|
|
}
|
|
}
|
|
}
|