mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-25 19:11:06 +00:00
4ebec84f5e
Allows us to set all the crates in the main workspace file, so changing their versions or branch is much simpler and reduce the amount of noise in the diff Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/1450>
39 lines
1.2 KiB
Rust
39 lines
1.2 KiB
Rust
// Take a look at the license at the top of the repository in the LICENSE file.
|
|
|
|
use std::mem;
|
|
|
|
use glib::translate::*;
|
|
|
|
use crate::{ffi, PlayVideoInfo};
|
|
|
|
impl PlayVideoInfo {
|
|
#[doc(alias = "get_framerate")]
|
|
#[doc(alias = "gst_play_video_info_get_framerate")]
|
|
pub fn framerate(&self) -> gst::Fraction {
|
|
unsafe {
|
|
let mut fps_n = mem::MaybeUninit::uninit();
|
|
let mut fps_d = mem::MaybeUninit::uninit();
|
|
ffi::gst_play_video_info_get_framerate(
|
|
self.to_glib_none().0,
|
|
fps_n.as_mut_ptr(),
|
|
fps_d.as_mut_ptr(),
|
|
);
|
|
(fps_n.assume_init(), fps_d.assume_init()).into()
|
|
}
|
|
}
|
|
|
|
#[doc(alias = "get_pixel_aspect_ratio")]
|
|
#[doc(alias = "gst_play_video_info_get_pixel_aspect_ratio")]
|
|
pub fn pixel_aspect_ratio(&self) -> gst::Fraction {
|
|
unsafe {
|
|
let mut par_n = mem::MaybeUninit::uninit();
|
|
let mut par_d = mem::MaybeUninit::uninit();
|
|
ffi::gst_play_video_info_get_pixel_aspect_ratio(
|
|
self.to_glib_none().0,
|
|
par_n.as_mut_ptr(),
|
|
par_d.as_mut_ptr(),
|
|
);
|
|
(par_n.assume_init() as i32, par_d.assume_init() as i32).into()
|
|
}
|
|
}
|
|
}
|