2017-12-18 08:05:42 +00:00
|
|
|
// Copyright (C) 2017 Sebastian Dröge <sebastian@centricular.com>
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
use glib::object::IsA;
|
|
|
|
use glib::translate::*;
|
|
|
|
use gst;
|
2019-03-19 07:58:20 +00:00
|
|
|
use gst_base_sys;
|
2017-12-18 08:05:42 +00:00
|
|
|
use std::mem;
|
|
|
|
|
2019-05-23 18:19:24 +00:00
|
|
|
pub fn type_find_helper_for_data<P: IsA<gst::Object>, R: AsRef<[u8]>>(
|
|
|
|
obj: Option<&P>,
|
2017-12-18 08:05:42 +00:00
|
|
|
data: R,
|
2019-12-16 11:29:51 +00:00
|
|
|
) -> Result<(gst::Caps, gst::TypeFindProbability), glib::error::BoolError> {
|
2017-12-18 08:05:42 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
2019-07-11 12:34:28 +00:00
|
|
|
let mut prob = mem::MaybeUninit::uninit();
|
2017-12-18 08:05:42 +00:00
|
|
|
let data = data.as_ref();
|
|
|
|
let (ptr, len) = (data.as_ptr(), data.len());
|
2019-07-11 12:34:28 +00:00
|
|
|
let ret = gst_base_sys::gst_type_find_helper_for_data(
|
2019-01-16 11:32:58 +00:00
|
|
|
obj.map(|p| p.as_ref()).to_glib_none().0,
|
2018-07-27 10:36:40 +00:00
|
|
|
mut_override(ptr),
|
|
|
|
len,
|
2019-07-11 12:34:28 +00:00
|
|
|
prob.as_mut_ptr(),
|
|
|
|
);
|
|
|
|
if ret.is_null() {
|
2019-12-16 11:29:51 +00:00
|
|
|
Err(glib_bool_error!("No type could be found"))
|
2019-07-11 12:34:28 +00:00
|
|
|
} else {
|
2019-12-16 11:29:51 +00:00
|
|
|
Ok((from_glib_full(ret), from_glib(prob.assume_init())))
|
2019-07-11 12:34:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(any(feature = "v1_16", feature = "dox"))]
|
2020-11-19 09:56:42 +00:00
|
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
|
2019-07-11 12:34:28 +00:00
|
|
|
pub fn type_find_helper_for_data_with_extension<P: IsA<gst::Object>, R: AsRef<[u8]>>(
|
|
|
|
obj: Option<&P>,
|
|
|
|
data: R,
|
|
|
|
extension: Option<&str>,
|
2019-12-16 11:29:51 +00:00
|
|
|
) -> Result<(gst::Caps, gst::TypeFindProbability), glib::error::BoolError> {
|
2019-07-11 12:34:28 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
|
|
|
let mut prob = mem::MaybeUninit::uninit();
|
|
|
|
let data = data.as_ref();
|
|
|
|
let (ptr, len) = (data.as_ptr(), data.len());
|
|
|
|
let ret = gst_base_sys::gst_type_find_helper_for_data_with_extension(
|
|
|
|
obj.map(|p| p.as_ref()).to_glib_none().0,
|
|
|
|
mut_override(ptr),
|
|
|
|
len,
|
|
|
|
extension.to_glib_none().0,
|
|
|
|
prob.as_mut_ptr(),
|
|
|
|
);
|
|
|
|
if ret.is_null() {
|
2019-12-16 11:29:51 +00:00
|
|
|
Err(glib_bool_error!("No type could be found"))
|
2019-07-11 12:34:28 +00:00
|
|
|
} else {
|
2019-12-16 11:29:51 +00:00
|
|
|
Ok((from_glib_full(ret), from_glib(prob.assume_init())))
|
2019-07-11 12:34:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn type_find_helper_for_buffer<P: IsA<gst::Object>>(
|
|
|
|
obj: Option<&P>,
|
|
|
|
buf: &gst::Buffer,
|
2019-12-16 11:29:51 +00:00
|
|
|
) -> Result<(gst::Caps, gst::TypeFindProbability), glib::error::BoolError> {
|
2019-07-11 12:34:28 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
|
|
|
let mut prob = mem::MaybeUninit::uninit();
|
|
|
|
let ret = gst_base_sys::gst_type_find_helper_for_buffer(
|
|
|
|
obj.map(|p| p.as_ref()).to_glib_none().0,
|
|
|
|
buf.to_glib_none().0,
|
|
|
|
prob.as_mut_ptr(),
|
|
|
|
);
|
|
|
|
if ret.is_null() {
|
2019-12-16 11:29:51 +00:00
|
|
|
Err(glib_bool_error!("No type could be found"))
|
2019-07-11 12:34:28 +00:00
|
|
|
} else {
|
2019-12-16 11:29:51 +00:00
|
|
|
Ok((from_glib_full(ret), from_glib(prob.assume_init())))
|
2019-07-11 12:34:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(any(feature = "v1_16", feature = "dox"))]
|
2020-11-19 09:56:42 +00:00
|
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
|
2019-07-11 12:34:28 +00:00
|
|
|
pub fn type_find_helper_for_buffer_with_extension<P: IsA<gst::Object>>(
|
|
|
|
obj: Option<&P>,
|
|
|
|
buf: &gst::Buffer,
|
|
|
|
extension: Option<&str>,
|
2019-12-16 11:29:51 +00:00
|
|
|
) -> Result<(gst::Caps, gst::TypeFindProbability), glib::error::BoolError> {
|
2019-07-11 12:34:28 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
|
|
|
let mut prob = mem::MaybeUninit::uninit();
|
|
|
|
let ret = gst_base_sys::gst_type_find_helper_for_buffer_with_extension(
|
|
|
|
obj.map(|p| p.as_ref()).to_glib_none().0,
|
|
|
|
buf.to_glib_none().0,
|
|
|
|
extension.to_glib_none().0,
|
|
|
|
prob.as_mut_ptr(),
|
|
|
|
);
|
|
|
|
if ret.is_null() {
|
2019-12-16 11:29:51 +00:00
|
|
|
Err(glib_bool_error!("No type could be found"))
|
2019-07-11 12:34:28 +00:00
|
|
|
} else {
|
2019-12-16 11:29:51 +00:00
|
|
|
Ok((from_glib_full(ret), from_glib(prob.assume_init())))
|
2019-07-11 12:34:28 +00:00
|
|
|
}
|
2017-12-18 08:05:42 +00:00
|
|
|
}
|
|
|
|
}
|