gstreamer-rs/gstreamer-video/src/auto/flags.rs

610 lines
16 KiB
Rust
Raw Normal View History

2018-04-23 17:34:22 +00:00
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git)
// DO NOT EDIT
2020-11-22 09:50:37 +00:00
use bitflags::bitflags;
use glib::translate::*;
use glib::value::FromValue;
2021-04-19 16:24:43 +00:00
use glib::value::ToValue;
use glib::StaticType;
use glib::Type;
bitflags! {
pub struct VideoBufferFlags: u32 {
const INTERLACED = 1048576;
const TFF = 2097152;
const RFF = 4194304;
const ONEFIELD = 8388608;
const MULTIPLE_VIEW = 16777216;
const FIRST_IN_BUNDLE = 33554432;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_16", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
const TOP_FIELD = 10485760;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_16", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
const BOTTOM_FIELD = 8388608;
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
const MARKER = 512;
}
}
#[doc(hidden)]
impl IntoGlib for VideoBufferFlags {
2020-11-22 09:50:37 +00:00
type GlibType = ffi::GstVideoBufferFlags;
fn into_glib(self) -> ffi::GstVideoBufferFlags {
self.bits()
}
}
#[doc(hidden)]
2020-11-22 09:50:37 +00:00
impl FromGlib<ffi::GstVideoBufferFlags> for VideoBufferFlags {
2020-12-08 13:00:17 +00:00
unsafe fn from_glib(value: ffi::GstVideoBufferFlags) -> VideoBufferFlags {
skip_assert_initialized!();
VideoBufferFlags::from_bits_truncate(value)
}
}
impl StaticType for VideoBufferFlags {
fn static_type() -> Type {
2020-11-22 09:50:37 +00:00
unsafe { from_glib(ffi::gst_video_buffer_flags_get_type()) }
}
}
2021-04-19 16:24:43 +00:00
impl glib::value::ValueType for VideoBufferFlags {
type Type = Self;
}
2021-04-19 16:24:43 +00:00
unsafe impl<'a> FromValue<'a> for VideoBufferFlags {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
2020-11-22 09:50:37 +00:00
from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
}
}
2021-04-19 16:24:43 +00:00
impl ToValue for VideoBufferFlags {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<VideoBufferFlags>();
unsafe {
glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
2021-04-19 16:24:43 +00:00
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
}
}
bitflags! {
pub struct VideoChromaSite: u32 {
2017-10-01 13:52:15 +00:00
const NONE = 1;
const H_COSITED = 2;
const V_COSITED = 4;
const ALT_LINE = 8;
const COSITED = 6;
const JPEG = 1;
const MPEG2 = 2;
const DV = 14;
}
}
#[doc(hidden)]
impl IntoGlib for VideoChromaSite {
2020-11-22 09:50:37 +00:00
type GlibType = ffi::GstVideoChromaSite;
fn into_glib(self) -> ffi::GstVideoChromaSite {
self.bits()
}
}
#[doc(hidden)]
2020-11-22 09:50:37 +00:00
impl FromGlib<ffi::GstVideoChromaSite> for VideoChromaSite {
2020-12-08 13:00:17 +00:00
unsafe fn from_glib(value: ffi::GstVideoChromaSite) -> VideoChromaSite {
skip_assert_initialized!();
VideoChromaSite::from_bits_truncate(value)
}
}
impl StaticType for VideoChromaSite {
fn static_type() -> Type {
2020-11-22 09:50:37 +00:00
unsafe { from_glib(ffi::gst_video_chroma_site_get_type()) }
}
}
2021-04-19 16:24:43 +00:00
impl glib::value::ValueType for VideoChromaSite {
type Type = Self;
}
2021-04-19 16:24:43 +00:00
unsafe impl<'a> FromValue<'a> for VideoChromaSite {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
2020-11-22 09:50:37 +00:00
from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
}
}
2021-04-19 16:24:43 +00:00
impl ToValue for VideoChromaSite {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<VideoChromaSite>();
unsafe {
glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
2021-04-19 16:24:43 +00:00
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
}
}
bitflags! {
pub struct VideoCodecFrameFlags: u32 {
const DECODE_ONLY = 1;
const SYNC_POINT = 2;
const FORCE_KEYFRAME = 4;
const FORCE_KEYFRAME_HEADERS = 8;
}
}
#[doc(hidden)]
impl IntoGlib for VideoCodecFrameFlags {
2020-11-22 09:50:37 +00:00
type GlibType = ffi::GstVideoCodecFrameFlags;
fn into_glib(self) -> ffi::GstVideoCodecFrameFlags {
self.bits()
}
}
#[doc(hidden)]
2020-11-22 09:50:37 +00:00
impl FromGlib<ffi::GstVideoCodecFrameFlags> for VideoCodecFrameFlags {
2020-12-08 13:00:17 +00:00
unsafe fn from_glib(value: ffi::GstVideoCodecFrameFlags) -> VideoCodecFrameFlags {
skip_assert_initialized!();
VideoCodecFrameFlags::from_bits_truncate(value)
}
}
bitflags! {
pub struct VideoFlags: u32 {
2017-10-01 13:52:15 +00:00
const VARIABLE_FPS = 1;
const PREMULTIPLIED_ALPHA = 2;
}
}
#[doc(hidden)]
impl IntoGlib for VideoFlags {
2020-11-22 09:50:37 +00:00
type GlibType = ffi::GstVideoFlags;
fn into_glib(self) -> ffi::GstVideoFlags {
self.bits()
}
}
#[doc(hidden)]
2020-11-22 09:50:37 +00:00
impl FromGlib<ffi::GstVideoFlags> for VideoFlags {
2020-12-08 13:00:17 +00:00
unsafe fn from_glib(value: ffi::GstVideoFlags) -> VideoFlags {
skip_assert_initialized!();
VideoFlags::from_bits_truncate(value)
}
}
impl StaticType for VideoFlags {
fn static_type() -> Type {
2020-11-22 09:50:37 +00:00
unsafe { from_glib(ffi::gst_video_flags_get_type()) }
}
}
2021-04-19 16:24:43 +00:00
impl glib::value::ValueType for VideoFlags {
type Type = Self;
}
2021-04-19 16:24:43 +00:00
unsafe impl<'a> FromValue<'a> for VideoFlags {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
2020-11-22 09:50:37 +00:00
from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
}
}
2021-04-19 16:24:43 +00:00
impl ToValue for VideoFlags {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<VideoFlags>();
unsafe {
glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
2021-04-19 16:24:43 +00:00
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
}
}
bitflags! {
pub struct VideoFormatFlags: u32 {
2017-10-01 13:52:15 +00:00
const YUV = 1;
const RGB = 2;
const GRAY = 4;
const ALPHA = 8;
const LE = 16;
const PALETTE = 32;
const COMPLEX = 64;
const UNPACK = 128;
const TILED = 256;
}
}
#[doc(hidden)]
impl IntoGlib for VideoFormatFlags {
2020-11-22 09:50:37 +00:00
type GlibType = ffi::GstVideoFormatFlags;
fn into_glib(self) -> ffi::GstVideoFormatFlags {
self.bits()
}
}
#[doc(hidden)]
2020-11-22 09:50:37 +00:00
impl FromGlib<ffi::GstVideoFormatFlags> for VideoFormatFlags {
2020-12-08 13:00:17 +00:00
unsafe fn from_glib(value: ffi::GstVideoFormatFlags) -> VideoFormatFlags {
skip_assert_initialized!();
VideoFormatFlags::from_bits_truncate(value)
}
}
impl StaticType for VideoFormatFlags {
fn static_type() -> Type {
2020-11-22 09:50:37 +00:00
unsafe { from_glib(ffi::gst_video_format_flags_get_type()) }
}
}
2021-04-19 16:24:43 +00:00
impl glib::value::ValueType for VideoFormatFlags {
type Type = Self;
}
2021-04-19 16:24:43 +00:00
unsafe impl<'a> FromValue<'a> for VideoFormatFlags {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
2020-11-22 09:50:37 +00:00
from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
}
}
2021-04-19 16:24:43 +00:00
impl ToValue for VideoFormatFlags {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<VideoFormatFlags>();
unsafe {
glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
2021-04-19 16:24:43 +00:00
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
}
}
2017-08-11 09:29:23 +00:00
2017-08-11 11:55:31 +00:00
bitflags! {
pub struct VideoFrameFlags: u32 {
2017-10-01 13:52:15 +00:00
const INTERLACED = 1;
const TFF = 2;
const RFF = 4;
const ONEFIELD = 8;
const MULTIPLE_VIEW = 16;
const FIRST_IN_BUNDLE = 32;
2019-04-23 14:32:09 +00:00
const TOP_FIELD = 10;
const BOTTOM_FIELD = 8;
2017-08-11 11:55:31 +00:00
}
}
#[doc(hidden)]
impl IntoGlib for VideoFrameFlags {
2020-11-22 09:50:37 +00:00
type GlibType = ffi::GstVideoFrameFlags;
2017-08-11 11:55:31 +00:00
fn into_glib(self) -> ffi::GstVideoFrameFlags {
self.bits()
2017-08-11 11:55:31 +00:00
}
}
#[doc(hidden)]
2020-11-22 09:50:37 +00:00
impl FromGlib<ffi::GstVideoFrameFlags> for VideoFrameFlags {
2020-12-08 13:00:17 +00:00
unsafe fn from_glib(value: ffi::GstVideoFrameFlags) -> VideoFrameFlags {
2017-08-11 11:55:31 +00:00
skip_assert_initialized!();
VideoFrameFlags::from_bits_truncate(value)
2017-08-11 11:55:31 +00:00
}
}
impl StaticType for VideoFrameFlags {
fn static_type() -> Type {
2020-11-22 09:50:37 +00:00
unsafe { from_glib(ffi::gst_video_frame_flags_get_type()) }
2017-08-11 11:55:31 +00:00
}
}
2021-04-19 16:24:43 +00:00
impl glib::value::ValueType for VideoFrameFlags {
type Type = Self;
2017-08-11 11:55:31 +00:00
}
2021-04-19 16:24:43 +00:00
unsafe impl<'a> FromValue<'a> for VideoFrameFlags {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
2020-11-22 09:50:37 +00:00
from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
2017-08-11 11:55:31 +00:00
}
}
2021-04-19 16:24:43 +00:00
impl ToValue for VideoFrameFlags {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<VideoFrameFlags>();
unsafe {
glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
2021-04-19 16:24:43 +00:00
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
2017-08-11 11:55:31 +00:00
}
}
2017-08-11 09:29:23 +00:00
bitflags! {
pub struct VideoMultiviewFlags: u32 {
2017-10-01 13:52:15 +00:00
const RIGHT_VIEW_FIRST = 1;
const LEFT_FLIPPED = 2;
const LEFT_FLOPPED = 4;
const RIGHT_FLIPPED = 8;
const RIGHT_FLOPPED = 16;
const HALF_ASPECT = 16384;
const MIXED_MONO = 32768;
2017-08-11 09:29:23 +00:00
}
}
#[doc(hidden)]
impl IntoGlib for VideoMultiviewFlags {
2020-11-22 09:50:37 +00:00
type GlibType = ffi::GstVideoMultiviewFlags;
2017-08-11 09:29:23 +00:00
fn into_glib(self) -> ffi::GstVideoMultiviewFlags {
self.bits()
2017-08-11 09:29:23 +00:00
}
}
#[doc(hidden)]
2020-11-22 09:50:37 +00:00
impl FromGlib<ffi::GstVideoMultiviewFlags> for VideoMultiviewFlags {
2020-12-08 13:00:17 +00:00
unsafe fn from_glib(value: ffi::GstVideoMultiviewFlags) -> VideoMultiviewFlags {
2017-08-11 09:29:23 +00:00
skip_assert_initialized!();
VideoMultiviewFlags::from_bits_truncate(value)
2017-08-11 09:29:23 +00:00
}
}
impl StaticType for VideoMultiviewFlags {
fn static_type() -> Type {
2020-11-22 09:50:37 +00:00
unsafe { from_glib(ffi::gst_video_multiview_flags_get_type()) }
2017-08-11 09:29:23 +00:00
}
}
2021-04-19 16:24:43 +00:00
impl glib::value::ValueType for VideoMultiviewFlags {
type Type = Self;
2017-08-11 09:29:23 +00:00
}
2021-04-19 16:24:43 +00:00
unsafe impl<'a> FromValue<'a> for VideoMultiviewFlags {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
2020-11-22 09:50:37 +00:00
from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
2017-08-11 09:29:23 +00:00
}
}
2021-04-19 16:24:43 +00:00
impl ToValue for VideoMultiviewFlags {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<VideoMultiviewFlags>();
unsafe {
glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
2021-04-19 16:24:43 +00:00
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
2017-08-11 09:29:23 +00:00
}
}
bitflags! {
pub struct VideoOverlayFormatFlags: u32 {
const PREMULTIPLIED_ALPHA = 1;
const GLOBAL_ALPHA = 2;
}
}
#[doc(hidden)]
impl IntoGlib for VideoOverlayFormatFlags {
2020-11-22 09:50:37 +00:00
type GlibType = ffi::GstVideoOverlayFormatFlags;
fn into_glib(self) -> ffi::GstVideoOverlayFormatFlags {
self.bits()
}
}
#[doc(hidden)]
2020-11-22 09:50:37 +00:00
impl FromGlib<ffi::GstVideoOverlayFormatFlags> for VideoOverlayFormatFlags {
2020-12-08 13:00:17 +00:00
unsafe fn from_glib(value: ffi::GstVideoOverlayFormatFlags) -> VideoOverlayFormatFlags {
skip_assert_initialized!();
VideoOverlayFormatFlags::from_bits_truncate(value)
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_16", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
2019-04-23 14:32:09 +00:00
impl StaticType for VideoOverlayFormatFlags {
fn static_type() -> Type {
2020-11-22 09:50:37 +00:00
unsafe { from_glib(ffi::gst_video_overlay_format_flags_get_type()) }
2019-04-23 14:32:09 +00:00
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_16", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
2021-04-19 16:24:43 +00:00
impl glib::value::ValueType for VideoOverlayFormatFlags {
type Type = Self;
2019-04-23 14:32:09 +00:00
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_16", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
2021-04-19 16:24:43 +00:00
unsafe impl<'a> FromValue<'a> for VideoOverlayFormatFlags {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
2020-11-22 09:50:37 +00:00
from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
2019-04-23 14:32:09 +00:00
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_16", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_16")))]
2021-04-19 16:24:43 +00:00
impl ToValue for VideoOverlayFormatFlags {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<VideoOverlayFormatFlags>();
unsafe {
glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
2021-04-19 16:24:43 +00:00
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
2019-04-23 14:32:09 +00:00
}
}
2019-05-28 07:26:44 +00:00
bitflags! {
pub struct VideoPackFlags: u32 {
const TRUNCATE_RANGE = 1;
const INTERLACED = 2;
}
}
#[doc(hidden)]
impl IntoGlib for VideoPackFlags {
2020-11-22 09:50:37 +00:00
type GlibType = ffi::GstVideoPackFlags;
2019-05-28 07:26:44 +00:00
fn into_glib(self) -> ffi::GstVideoPackFlags {
2019-05-28 07:26:44 +00:00
self.bits()
}
}
#[doc(hidden)]
2020-11-22 09:50:37 +00:00
impl FromGlib<ffi::GstVideoPackFlags> for VideoPackFlags {
2020-12-08 13:00:17 +00:00
unsafe fn from_glib(value: ffi::GstVideoPackFlags) -> VideoPackFlags {
2019-05-28 07:26:44 +00:00
skip_assert_initialized!();
VideoPackFlags::from_bits_truncate(value)
}
}
impl StaticType for VideoPackFlags {
fn static_type() -> Type {
2020-11-22 09:50:37 +00:00
unsafe { from_glib(ffi::gst_video_pack_flags_get_type()) }
2019-05-28 07:26:44 +00:00
}
}
2021-04-19 16:24:43 +00:00
impl glib::value::ValueType for VideoPackFlags {
type Type = Self;
2019-05-28 07:26:44 +00:00
}
2021-04-19 16:24:43 +00:00
unsafe impl<'a> FromValue<'a> for VideoPackFlags {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
2020-11-22 09:50:37 +00:00
from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
2019-05-28 07:26:44 +00:00
}
}
2021-04-19 16:24:43 +00:00
impl ToValue for VideoPackFlags {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<VideoPackFlags>();
unsafe {
glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
2021-04-19 16:24:43 +00:00
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
2019-05-28 07:26:44 +00:00
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
bitflags! {
pub struct VideoTimeCodeFlags: u32 {
const DROP_FRAME = 1;
const INTERLACED = 2;
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
#[doc(hidden)]
impl IntoGlib for VideoTimeCodeFlags {
2020-11-22 09:50:37 +00:00
type GlibType = ffi::GstVideoTimeCodeFlags;
fn into_glib(self) -> ffi::GstVideoTimeCodeFlags {
self.bits()
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_10", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_10")))]
#[doc(hidden)]
2020-11-22 09:50:37 +00:00
impl FromGlib<ffi::GstVideoTimeCodeFlags> for VideoTimeCodeFlags {
2020-12-08 13:00:17 +00:00
unsafe fn from_glib(value: ffi::GstVideoTimeCodeFlags) -> VideoTimeCodeFlags {
skip_assert_initialized!();
VideoTimeCodeFlags::from_bits_truncate(value)
}
}
2020-04-30 16:51:41 +00:00
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2020-04-30 16:51:41 +00:00
impl StaticType for VideoTimeCodeFlags {
fn static_type() -> Type {
2020-11-22 09:50:37 +00:00
unsafe { from_glib(ffi::gst_video_time_code_flags_get_type()) }
2020-04-30 16:51:41 +00:00
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2021-04-19 16:24:43 +00:00
impl glib::value::ValueType for VideoTimeCodeFlags {
type Type = Self;
2020-04-30 16:51:41 +00:00
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2021-04-19 16:24:43 +00:00
unsafe impl<'a> FromValue<'a> for VideoTimeCodeFlags {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
2020-11-22 09:50:37 +00:00
from_glib(glib::gobject_ffi::g_value_get_flags(value.to_glib_none().0))
2020-04-30 16:51:41 +00:00
}
}
2020-11-27 13:37:24 +00:00
#[cfg(any(feature = "v1_18", feature = "dox"))]
#[cfg_attr(feature = "dox", doc(cfg(feature = "v1_18")))]
2021-04-19 16:24:43 +00:00
impl ToValue for VideoTimeCodeFlags {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<VideoTimeCodeFlags>();
unsafe {
glib::gobject_ffi::g_value_set_flags(value.to_glib_none_mut().0, self.into_glib());
2021-04-19 16:24:43 +00:00
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
2020-04-30 16:51:41 +00:00
}
}