mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-25 19:11:06 +00:00
video: Add bindings for is_common_aspect_ratio()
This commit is contained in:
parent
90aaa32957
commit
07562c592f
1 changed files with 16 additions and 0 deletions
|
@ -196,6 +196,22 @@ pub fn guess_framerate(duration: gst::ClockTime) -> Option<gst::Fraction> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(any(feature = "v1_22", feature = "dox"))]
|
||||||
|
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_22")))]
|
||||||
|
#[doc(alias = "gst_video_is_common_aspect_ratio")]
|
||||||
|
pub fn is_common_aspect_ratio(width: u32, height: u32, par: gst::Fraction) -> bool {
|
||||||
|
skip_assert_initialized!();
|
||||||
|
|
||||||
|
unsafe {
|
||||||
|
from_glib(ffi::gst_video_is_common_aspect_ratio(
|
||||||
|
width as i32,
|
||||||
|
height as i32,
|
||||||
|
par.numer(),
|
||||||
|
par.denom(),
|
||||||
|
))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
pub fn video_make_raw_caps(
|
pub fn video_make_raw_caps(
|
||||||
formats: &[crate::VideoFormat],
|
formats: &[crate::VideoFormat],
|
||||||
) -> gst::caps::Builder<gst::caps::NoFeature> {
|
) -> gst::caps::Builder<gst::caps::NoFeature> {
|
||||||
|
|
Loading…
Reference in a new issue