gstreamer-rs/gstreamer-pbutils/src/auto/encoding_video_profile.rs
2019-04-15 18:38:05 +03:00

33 lines
985 B
Rust

// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT
use EncodingProfile;
use glib::translate::*;
use gst_pbutils_sys;
glib_wrapper! {
pub struct EncodingVideoProfile(Object<gst_pbutils_sys::GstEncodingVideoProfile, gst_pbutils_sys::GstEncodingVideoProfileClass, EncodingVideoProfileClass>) @extends EncodingProfile;
match fn {
get_type => || gst_pbutils_sys::gst_encoding_video_profile_get_type(),
}
}
impl EncodingVideoProfile {
pub fn get_pass(&self) -> u32 {
unsafe {
gst_pbutils_sys::gst_encoding_video_profile_get_pass(self.to_glib_none().0)
}
}
pub fn get_variableframerate(&self) -> bool {
unsafe {
from_glib(gst_pbutils_sys::gst_encoding_video_profile_get_variableframerate(self.to_glib_none().0))
}
}
}
unsafe impl Send for EncodingVideoProfile {}
unsafe impl Sync for EncodingVideoProfile {}