gstreamer-rs/gstreamer-audio/src/auto/audio_decoder.rs
Sebastian Dröge 25860f7701 audio/video: proxy_getcaps() can't return None and get_caps() vfuncs must not return None
Other than in git master / 0.15, proxy_getcaps() on the video base
classes still returns an Option to preserve API compatibility.
2019-09-17 11:25:48 +03:00

396 lines
11 KiB
Rust

// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
use glib::object::Cast;
use glib::object::IsA;
use glib::signal::connect_raw;
use glib::signal::SignalHandlerId;
use glib::translate::*;
use glib_sys;
use gst;
use gst_audio_sys;
use std::boxed::Box as Box_;
use std::mem;
use std::mem::transmute;
use AudioInfo;
glib_wrapper! {
pub struct AudioDecoder(Object<gst_audio_sys::GstAudioDecoder, gst_audio_sys::GstAudioDecoderClass, AudioDecoderClass>) @extends gst::Element, gst::Object;
match fn {
get_type => || gst_audio_sys::gst_audio_decoder_get_type(),
}
}
unsafe impl Send for AudioDecoder {}
unsafe impl Sync for AudioDecoder {}
pub const NONE_AUDIO_DECODER: Option<&AudioDecoder> = None;
pub trait AudioDecoderExt: 'static {
fn allocate_output_buffer(&self, size: usize) -> Option<gst::Buffer>;
fn get_audio_info(&self) -> Option<AudioInfo>;
fn get_delay(&self) -> i32;
fn get_drainable(&self) -> bool;
fn get_estimate_rate(&self) -> i32;
fn get_latency(&self) -> (gst::ClockTime, gst::ClockTime);
fn get_max_errors(&self) -> i32;
fn get_min_latency(&self) -> gst::ClockTime;
fn get_needs_format(&self) -> bool;
fn get_parse_state(&self) -> (bool, bool);
fn get_plc(&self) -> bool;
fn get_plc_aware(&self) -> i32;
fn get_tolerance(&self) -> gst::ClockTime;
fn merge_tags(&self, tags: Option<&gst::TagList>, mode: gst::TagMergeMode);
fn proxy_getcaps(&self, caps: Option<&gst::Caps>, filter: Option<&gst::Caps>) -> gst::Caps;
#[cfg(any(feature = "v1_10", feature = "dox"))]
fn set_allocation_caps(&self, allocation_caps: Option<&gst::Caps>);
fn set_drainable(&self, enabled: bool);
fn set_estimate_rate(&self, enabled: bool);
fn set_latency(&self, min: gst::ClockTime, max: gst::ClockTime);
fn set_max_errors(&self, num: i32);
fn set_min_latency(&self, num: gst::ClockTime);
fn set_needs_format(&self, enabled: bool);
fn set_plc(&self, enabled: bool);
fn set_plc_aware(&self, plc: bool);
fn set_tolerance(&self, tolerance: gst::ClockTime);
fn set_use_default_pad_acceptcaps(&self, use_: bool);
fn connect_property_min_latency_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_plc_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
fn connect_property_tolerance_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId;
}
impl<O: IsA<AudioDecoder>> AudioDecoderExt for O {
fn allocate_output_buffer(&self, size: usize) -> Option<gst::Buffer> {
unsafe {
from_glib_full(gst_audio_sys::gst_audio_decoder_allocate_output_buffer(
self.as_ref().to_glib_none().0,
size,
))
}
}
fn get_audio_info(&self) -> Option<AudioInfo> {
unsafe {
from_glib_full(gst_audio_sys::gst_audio_decoder_get_audio_info(
self.as_ref().to_glib_none().0,
))
}
}
fn get_delay(&self) -> i32 {
unsafe { gst_audio_sys::gst_audio_decoder_get_delay(self.as_ref().to_glib_none().0) }
}
fn get_drainable(&self) -> bool {
unsafe {
from_glib(gst_audio_sys::gst_audio_decoder_get_drainable(
self.as_ref().to_glib_none().0,
))
}
}
fn get_estimate_rate(&self) -> i32 {
unsafe {
gst_audio_sys::gst_audio_decoder_get_estimate_rate(self.as_ref().to_glib_none().0)
}
}
fn get_latency(&self) -> (gst::ClockTime, gst::ClockTime) {
unsafe {
let mut min = mem::uninitialized();
let mut max = mem::uninitialized();
gst_audio_sys::gst_audio_decoder_get_latency(
self.as_ref().to_glib_none().0,
&mut min,
&mut max,
);
(from_glib(min), from_glib(max))
}
}
fn get_max_errors(&self) -> i32 {
unsafe { gst_audio_sys::gst_audio_decoder_get_max_errors(self.as_ref().to_glib_none().0) }
}
fn get_min_latency(&self) -> gst::ClockTime {
unsafe {
from_glib(gst_audio_sys::gst_audio_decoder_get_min_latency(
self.as_ref().to_glib_none().0,
))
}
}
fn get_needs_format(&self) -> bool {
unsafe {
from_glib(gst_audio_sys::gst_audio_decoder_get_needs_format(
self.as_ref().to_glib_none().0,
))
}
}
fn get_parse_state(&self) -> (bool, bool) {
unsafe {
let mut sync = mem::uninitialized();
let mut eos = mem::uninitialized();
gst_audio_sys::gst_audio_decoder_get_parse_state(
self.as_ref().to_glib_none().0,
&mut sync,
&mut eos,
);
(from_glib(sync), from_glib(eos))
}
}
fn get_plc(&self) -> bool {
unsafe {
from_glib(gst_audio_sys::gst_audio_decoder_get_plc(
self.as_ref().to_glib_none().0,
))
}
}
fn get_plc_aware(&self) -> i32 {
unsafe { gst_audio_sys::gst_audio_decoder_get_plc_aware(self.as_ref().to_glib_none().0) }
}
fn get_tolerance(&self) -> gst::ClockTime {
unsafe {
from_glib(gst_audio_sys::gst_audio_decoder_get_tolerance(
self.as_ref().to_glib_none().0,
))
}
}
fn merge_tags(&self, tags: Option<&gst::TagList>, mode: gst::TagMergeMode) {
unsafe {
gst_audio_sys::gst_audio_decoder_merge_tags(
self.as_ref().to_glib_none().0,
tags.to_glib_none().0,
mode.to_glib(),
);
}
}
fn proxy_getcaps(&self, caps: Option<&gst::Caps>, filter: Option<&gst::Caps>) -> gst::Caps {
unsafe {
from_glib_full(gst_audio_sys::gst_audio_decoder_proxy_getcaps(
self.as_ref().to_glib_none().0,
caps.to_glib_none().0,
filter.to_glib_none().0,
))
}
}
#[cfg(any(feature = "v1_10", feature = "dox"))]
fn set_allocation_caps(&self, allocation_caps: Option<&gst::Caps>) {
unsafe {
gst_audio_sys::gst_audio_decoder_set_allocation_caps(
self.as_ref().to_glib_none().0,
allocation_caps.to_glib_none().0,
);
}
}
fn set_drainable(&self, enabled: bool) {
unsafe {
gst_audio_sys::gst_audio_decoder_set_drainable(
self.as_ref().to_glib_none().0,
enabled.to_glib(),
);
}
}
fn set_estimate_rate(&self, enabled: bool) {
unsafe {
gst_audio_sys::gst_audio_decoder_set_estimate_rate(
self.as_ref().to_glib_none().0,
enabled.to_glib(),
);
}
}
fn set_latency(&self, min: gst::ClockTime, max: gst::ClockTime) {
unsafe {
gst_audio_sys::gst_audio_decoder_set_latency(
self.as_ref().to_glib_none().0,
min.to_glib(),
max.to_glib(),
);
}
}
fn set_max_errors(&self, num: i32) {
unsafe {
gst_audio_sys::gst_audio_decoder_set_max_errors(self.as_ref().to_glib_none().0, num);
}
}
fn set_min_latency(&self, num: gst::ClockTime) {
unsafe {
gst_audio_sys::gst_audio_decoder_set_min_latency(
self.as_ref().to_glib_none().0,
num.to_glib(),
);
}
}
fn set_needs_format(&self, enabled: bool) {
unsafe {
gst_audio_sys::gst_audio_decoder_set_needs_format(
self.as_ref().to_glib_none().0,
enabled.to_glib(),
);
}
}
fn set_plc(&self, enabled: bool) {
unsafe {
gst_audio_sys::gst_audio_decoder_set_plc(
self.as_ref().to_glib_none().0,
enabled.to_glib(),
);
}
}
fn set_plc_aware(&self, plc: bool) {
unsafe {
gst_audio_sys::gst_audio_decoder_set_plc_aware(
self.as_ref().to_glib_none().0,
plc.to_glib(),
);
}
}
fn set_tolerance(&self, tolerance: gst::ClockTime) {
unsafe {
gst_audio_sys::gst_audio_decoder_set_tolerance(
self.as_ref().to_glib_none().0,
tolerance.to_glib(),
);
}
}
fn set_use_default_pad_acceptcaps(&self, use_: bool) {
unsafe {
gst_audio_sys::gst_audio_decoder_set_use_default_pad_acceptcaps(
self.as_ref().to_glib_none().0,
use_.to_glib(),
);
}
}
fn connect_property_min_latency_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_min_latency_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(
this: *mut gst_audio_sys::GstAudioDecoder,
_param_spec: glib_sys::gpointer,
f: glib_sys::gpointer,
) where
P: IsA<AudioDecoder>,
{
let f: &F = &*(f as *const F);
f(&AudioDecoder::from_glib_borrow(this).unsafe_cast())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::min-latency\0".as_ptr() as *const _,
Some(transmute(notify_min_latency_trampoline::<Self, F> as usize)),
Box_::into_raw(f),
)
}
}
fn connect_property_plc_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_plc_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(
this: *mut gst_audio_sys::GstAudioDecoder,
_param_spec: glib_sys::gpointer,
f: glib_sys::gpointer,
) where
P: IsA<AudioDecoder>,
{
let f: &F = &*(f as *const F);
f(&AudioDecoder::from_glib_borrow(this).unsafe_cast())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::plc\0".as_ptr() as *const _,
Some(transmute(notify_plc_trampoline::<Self, F> as usize)),
Box_::into_raw(f),
)
}
}
fn connect_property_tolerance_notify<F: Fn(&Self) + Send + Sync + 'static>(
&self,
f: F,
) -> SignalHandlerId {
unsafe extern "C" fn notify_tolerance_trampoline<P, F: Fn(&P) + Send + Sync + 'static>(
this: *mut gst_audio_sys::GstAudioDecoder,
_param_spec: glib_sys::gpointer,
f: glib_sys::gpointer,
) where
P: IsA<AudioDecoder>,
{
let f: &F = &*(f as *const F);
f(&AudioDecoder::from_glib_borrow(this).unsafe_cast())
}
unsafe {
let f: Box_<F> = Box_::new(f);
connect_raw(
self.as_ptr() as *mut _,
b"notify::tolerance\0".as_ptr() as *const _,
Some(transmute(notify_tolerance_trampoline::<Self, F> as usize)),
Box_::into_raw(f),
)
}
}
}