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;
|
|
|
|
|
|
|
|
pub fn type_find_helper_for_data<
|
|
|
|
'a,
|
|
|
|
P: IsA<gst::Object> + 'a,
|
|
|
|
Q: Into<Option<&'a P>>,
|
|
|
|
R: AsRef<[u8]>,
|
|
|
|
>(
|
|
|
|
obj: Q,
|
|
|
|
data: R,
|
|
|
|
) -> (Option<gst::Caps>, gst::TypeFindProbability) {
|
|
|
|
assert_initialized_main_thread!();
|
|
|
|
let obj = obj.into();
|
|
|
|
unsafe {
|
|
|
|
let mut prob = mem::uninitialized();
|
|
|
|
let data = data.as_ref();
|
|
|
|
let (ptr, len) = (data.as_ptr(), data.len());
|
2019-03-19 07:58:20 +00:00
|
|
|
let ret = from_glib_full(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,
|
|
|
|
&mut prob,
|
2017-12-18 08:05:42 +00:00
|
|
|
));
|
|
|
|
(ret, from_glib(prob))
|
|
|
|
}
|
|
|
|
}
|