forked from mirrors/gstreamer-rs
video: Add bindings for guess_framerate()
This commit is contained in:
parent
c35a7caf42
commit
12063ec83a
1 changed files with 22 additions and 0 deletions
|
@ -169,6 +169,28 @@ pub fn calculate_display_ratio(
|
|||
}
|
||||
}
|
||||
|
||||
pub fn guess_framerate(duration: gst::ClockTime) -> Option<gst::Fraction> {
|
||||
skip_assert_initialized!();
|
||||
|
||||
unsafe {
|
||||
let mut dest_n = mem::MaybeUninit::uninit();
|
||||
let mut dest_d = mem::MaybeUninit::uninit();
|
||||
let res: bool = from_glib(gst_video_sys::gst_video_guess_framerate(
|
||||
duration.to_glib(),
|
||||
dest_n.as_mut_ptr(),
|
||||
dest_d.as_mut_ptr(),
|
||||
));
|
||||
if res {
|
||||
Some(gst::Fraction::new(
|
||||
dest_n.assume_init() as i32,
|
||||
dest_d.assume_init() as i32,
|
||||
))
|
||||
} else {
|
||||
None
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
|
Loading…
Reference in a new issue