2018-03-15 08:46:49 +00:00
|
|
|
// Copyright (C) 2018 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.
|
|
|
|
|
2018-04-25 08:10:06 +00:00
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
|
|
|
use glib::translate::*;
|
2018-03-15 08:46:49 +00:00
|
|
|
use PadTemplate;
|
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
|
|
|
use StaticPadTemplate;
|
|
|
|
|
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
|
|
|
use glib;
|
2019-03-19 07:58:20 +00:00
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
|
|
|
use gst_sys;
|
2018-03-15 08:46:49 +00:00
|
|
|
|
|
|
|
impl PadTemplate {
|
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
2020-06-11 08:53:35 +00:00
|
|
|
pub fn from_static_pad_template_with_gtype(
|
2018-04-01 08:30:03 +00:00
|
|
|
pad_template: &StaticPadTemplate,
|
|
|
|
pad_type: glib::types::Type,
|
2019-12-17 19:00:42 +00:00
|
|
|
) -> Result<PadTemplate, glib::BoolError> {
|
2018-03-15 08:46:49 +00:00
|
|
|
assert_initialized_main_thread!();
|
|
|
|
unsafe {
|
2019-12-17 19:00:42 +00:00
|
|
|
Option::<_>::from_glib_none(
|
2019-03-19 07:58:20 +00:00
|
|
|
gst_sys::gst_pad_template_new_from_static_pad_template_with_gtype(
|
2018-04-01 08:30:03 +00:00
|
|
|
mut_override(pad_template.to_glib_none().0),
|
|
|
|
pad_type.to_glib(),
|
|
|
|
),
|
|
|
|
)
|
2019-12-17 19:00:42 +00:00
|
|
|
.ok_or_else(|| glib_bool_error!("Failed to create PadTemplate"))
|
2018-03-15 08:46:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|