2018-11-29 19:18:06 +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.
|
|
|
|
|
|
|
|
use glib::translate::*;
|
|
|
|
|
2018-12-11 10:37:15 +00:00
|
|
|
pub trait GstParamSpecExt {
|
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
2020-11-19 09:56:42 +00:00
|
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_14")))]
|
2018-12-11 10:37:15 +00:00
|
|
|
fn array(
|
|
|
|
name: &str,
|
|
|
|
nick: &str,
|
|
|
|
blurb: &str,
|
|
|
|
element_spec: &glib::ParamSpec,
|
|
|
|
flags: glib::ParamFlags,
|
|
|
|
) -> Self;
|
|
|
|
|
|
|
|
fn fraction(
|
|
|
|
name: &str,
|
|
|
|
nick: &str,
|
|
|
|
blurb: &str,
|
2020-11-21 13:46:48 +00:00
|
|
|
min: crate::Fraction,
|
|
|
|
max: crate::Fraction,
|
|
|
|
default: crate::Fraction,
|
2018-12-11 10:37:15 +00:00
|
|
|
flags: glib::ParamFlags,
|
|
|
|
) -> Self;
|
|
|
|
}
|
2018-11-29 19:18:06 +00:00
|
|
|
|
2018-12-11 10:37:15 +00:00
|
|
|
impl GstParamSpecExt for glib::ParamSpec {
|
2018-11-29 19:18:06 +00:00
|
|
|
#[cfg(any(feature = "v1_14", feature = "dox"))]
|
2020-11-19 09:56:42 +00:00
|
|
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_14")))]
|
2018-12-11 10:37:15 +00:00
|
|
|
fn array(
|
2018-11-29 19:18:06 +00:00
|
|
|
name: &str,
|
|
|
|
nick: &str,
|
|
|
|
blurb: &str,
|
|
|
|
element_spec: &glib::ParamSpec,
|
|
|
|
flags: glib::ParamFlags,
|
|
|
|
) -> glib::ParamSpec {
|
2020-03-22 14:18:47 +00:00
|
|
|
assert_initialized_main_thread!();
|
2018-11-29 19:18:06 +00:00
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
from_glib_full(ffi::gst_param_spec_array(
|
2018-11-29 19:18:06 +00:00
|
|
|
name.to_glib_none().0,
|
|
|
|
nick.to_glib_none().0,
|
|
|
|
blurb.to_glib_none().0,
|
|
|
|
element_spec.to_glib_none().0,
|
|
|
|
flags.to_glib(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-11 10:37:15 +00:00
|
|
|
fn fraction(
|
2018-11-29 19:18:06 +00:00
|
|
|
name: &str,
|
|
|
|
nick: &str,
|
|
|
|
blurb: &str,
|
2020-11-21 13:46:48 +00:00
|
|
|
min: crate::Fraction,
|
|
|
|
max: crate::Fraction,
|
|
|
|
default: crate::Fraction,
|
2018-11-29 19:18:06 +00:00
|
|
|
flags: glib::ParamFlags,
|
|
|
|
) -> glib::ParamSpec {
|
2020-03-22 14:18:47 +00:00
|
|
|
assert_initialized_main_thread!();
|
2018-11-29 19:18:06 +00:00
|
|
|
unsafe {
|
2020-11-21 13:46:48 +00:00
|
|
|
from_glib_full(ffi::gst_param_spec_fraction(
|
2018-11-29 19:18:06 +00:00
|
|
|
name.to_glib_none().0,
|
|
|
|
nick.to_glib_none().0,
|
|
|
|
blurb.to_glib_none().0,
|
|
|
|
*min.numer(),
|
|
|
|
*min.denom(),
|
|
|
|
*max.numer(),
|
|
|
|
*max.denom(),
|
|
|
|
*default.numer(),
|
|
|
|
*default.denom(),
|
|
|
|
flags.to_glib(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-12-11 10:37:15 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2020-11-21 13:46:48 +00:00
|
|
|
use crate::prelude::*;
|
2018-12-11 10:37:15 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_trait() {
|
2020-11-21 13:46:48 +00:00
|
|
|
crate::init().unwrap();
|
2018-12-11 10:37:15 +00:00
|
|
|
|
|
|
|
let _pspec = glib::ParamSpec::fraction(
|
|
|
|
"foo",
|
|
|
|
"Foo",
|
|
|
|
"Foo Bar",
|
|
|
|
(0, 1).into(),
|
|
|
|
(100, 1).into(),
|
|
|
|
(1, 1).into(),
|
|
|
|
glib::ParamFlags::READWRITE,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|