mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-29 04:51:09 +00:00
abbc85c3d0
For all these traits only the implementation that already exists is possible. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1563>
63 lines
2.2 KiB
Rust
63 lines
2.2 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use gst::prelude::*;
|
|
|
|
use crate::{ffi, subclass::AudioVisualizerSetupToken, AudioVisualizer};
|
|
|
|
pub trait AudioVisualizerExtManual: IsA<AudioVisualizer> + 'static {
|
|
// rustdoc-stripper-ignore-next
|
|
/// Returns the number of samples per frame required before calling the render method
|
|
fn req_spf(&self) -> u32 {
|
|
let sinkpad = self.as_ref().static_pad("sink").expect("sink pad presence");
|
|
let _stream_lock = sinkpad.stream_lock();
|
|
|
|
let ptr = self.as_ptr() as *mut ffi::GstAudioVisualizer;
|
|
unsafe { (*ptr).req_spf }
|
|
}
|
|
|
|
// rustdoc-stripper-ignore-next
|
|
/// Modify the request of samples per frame required to be present in buffer before calling
|
|
/// the render method
|
|
fn set_req_spf(&self, spf: u32, token: &AudioVisualizerSetupToken) {
|
|
assert_eq!(
|
|
self.as_ptr() as *mut ffi::GstAudioVisualizer,
|
|
token.0.as_ptr()
|
|
);
|
|
|
|
let sinkpad = self.as_ref().static_pad("sink").expect("sink pad presence");
|
|
let _stream_lock = sinkpad.stream_lock();
|
|
|
|
let ptr = self.as_ptr() as *mut ffi::GstAudioVisualizer;
|
|
unsafe {
|
|
(*ptr).req_spf = spf;
|
|
}
|
|
}
|
|
|
|
fn audio_info(&self) -> gst_audio::AudioInfo {
|
|
let sinkpad = self.as_ref().static_pad("sink").expect("sink pad presence");
|
|
let _stream_lock = sinkpad.stream_lock();
|
|
|
|
let ptr = self.as_ptr() as *mut ffi::GstAudioVisualizer;
|
|
unsafe {
|
|
let info = &(*ptr).ainfo;
|
|
glib::translate::from_glib_none(glib::translate::mut_override(
|
|
info as *const gst_audio::ffi::GstAudioInfo,
|
|
))
|
|
}
|
|
}
|
|
|
|
fn video_info(&self) -> gst_video::VideoInfo {
|
|
let srcpad = self.as_ref().static_pad("src").expect("src pad presence");
|
|
let _stream_lock = srcpad.stream_lock();
|
|
|
|
let ptr = self.as_ptr() as *mut ffi::GstAudioVisualizer;
|
|
unsafe {
|
|
let info = &(*ptr).vinfo;
|
|
glib::translate::from_glib_none(glib::translate::mut_override(
|
|
info as *const gst_video::ffi::GstVideoInfo,
|
|
))
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<O: IsA<AudioVisualizer>> AudioVisualizerExtManual for O {}
|