1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// Take a look at the license at the top of the repository in the LICENSE file.

#[cfg(feature = "v1_16")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
use glib::translate::*;

#[cfg(feature = "v1_16")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
use crate::VideoCaptionType;
#[cfg(feature = "v1_20")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_20")))]
use crate::VideoOrientationMethod;

#[cfg(feature = "v1_16")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_16")))]
impl VideoCaptionType {
    #[doc(alias = "gst_video_caption_type_from_caps")]
    pub fn from_caps(caps: &gst::CapsRef) -> VideoCaptionType {
        skip_assert_initialized!();
        unsafe { from_glib(ffi::gst_video_caption_type_from_caps(caps.as_ptr())) }
    }
}

#[cfg(feature = "v1_20")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_20")))]
impl VideoOrientationMethod {
    #[cfg(feature = "v1_20")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_20")))]
    #[doc(alias = "gst_video_orientation_from_tag")]
    pub fn from_tag(taglist: &gst::TagListRef) -> Option<VideoOrientationMethod> {
        skip_assert_initialized!();

        unsafe {
            use std::mem;

            let mut method = mem::MaybeUninit::uninit();
            let ret = from_glib(ffi::gst_video_orientation_from_tag(
                mut_override(taglist.as_ptr()),
                method.as_mut_ptr(),
            ));
            if ret {
                Some(from_glib(method.assume_init()))
            } else {
                None
            }
        }
    }
}