2020-12-15 10:53:31 +00:00
|
|
|
// Take a look at the license at the top of the repository in the LICENSE file.
|
2018-02-19 20:15:52 +00:00
|
|
|
|
2020-11-22 10:10:54 +00:00
|
|
|
use crate::DiscovererVideoInfo;
|
2018-02-19 20:15:52 +00:00
|
|
|
|
|
|
|
use glib::translate::*;
|
|
|
|
|
|
|
|
impl DiscovererVideoInfo {
|
2021-04-11 19:39:50 +00:00
|
|
|
pub fn framerate(&self) -> gst::Fraction {
|
2018-02-19 20:15:52 +00:00
|
|
|
unsafe {
|
|
|
|
gst::Fraction::new(
|
2020-11-22 10:10:54 +00:00
|
|
|
ffi::gst_discoverer_video_info_get_framerate_num(self.to_glib_none().0) as i32,
|
|
|
|
ffi::gst_discoverer_video_info_get_framerate_denom(self.to_glib_none().0) as i32,
|
2018-03-02 19:06:45 +00:00
|
|
|
)
|
2018-02-19 20:15:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-11 19:39:50 +00:00
|
|
|
pub fn par(&self) -> gst::Fraction {
|
2018-02-19 20:15:52 +00:00
|
|
|
unsafe {
|
|
|
|
gst::Fraction::new(
|
2020-11-22 10:10:54 +00:00
|
|
|
ffi::gst_discoverer_video_info_get_par_num(self.to_glib_none().0) as i32,
|
|
|
|
ffi::gst_discoverer_video_info_get_par_denom(self.to_glib_none().0) as i32,
|
2018-03-02 19:06:45 +00:00
|
|
|
)
|
2018-02-19 20:15:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|