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
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
// 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

#[cfg(any(feature = "v1_18", feature = "dox"))]
use glib::translate::*;
#[cfg(any(feature = "v1_18", feature = "dox"))]
use glib::value::FromValue;
#[cfg(any(feature = "v1_18", feature = "dox"))]
use glib::value::FromValueOptional;
#[cfg(any(feature = "v1_18", feature = "dox"))]
use glib::value::SetValue;
#[cfg(any(feature = "v1_18", feature = "dox"))]
use glib::value::Value;
#[cfg(any(feature = "v1_18", feature = "dox"))]
use glib::StaticType;
#[cfg(any(feature = "v1_18", feature = "dox"))]
use glib::Type;
#[cfg(any(feature = "v1_18", feature = "dox"))]
use gobject_sys;
#[cfg(any(feature = "v1_18", feature = "dox"))]
use gst_base_sys;

#[cfg(any(feature = "v1_18", feature = "dox"))]
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy)]
#[non_exhaustive]
pub enum AggregatorStartTimeSelection {
    /// Start at running time 0.
    Zero,
    /// Start at the running time of
    /// the first buffer that is received.
    First,
    /// Start at the running time
    /// selected by the `start-time` property.
    ///
    /// Feature: `v1_18`
    ///
    Set,
    #[doc(hidden)]
    __Unknown(i32),
}

#[cfg(any(feature = "v1_18", feature = "dox"))]
#[doc(hidden)]
impl ToGlib for AggregatorStartTimeSelection {
    type GlibType = gst_base_sys::GstAggregatorStartTimeSelection;

    fn to_glib(&self) -> gst_base_sys::GstAggregatorStartTimeSelection {
        match *self {
            AggregatorStartTimeSelection::Zero => {
                gst_base_sys::GST_AGGREGATOR_START_TIME_SELECTION_ZERO
            }
            AggregatorStartTimeSelection::First => {
                gst_base_sys::GST_AGGREGATOR_START_TIME_SELECTION_FIRST
            }
            AggregatorStartTimeSelection::Set => {
                gst_base_sys::GST_AGGREGATOR_START_TIME_SELECTION_SET
            }
            AggregatorStartTimeSelection::__Unknown(value) => value,
        }
    }
}

#[cfg(any(feature = "v1_18", feature = "dox"))]
#[doc(hidden)]
impl FromGlib<gst_base_sys::GstAggregatorStartTimeSelection> for AggregatorStartTimeSelection {
    fn from_glib(value: gst_base_sys::GstAggregatorStartTimeSelection) -> Self {
        skip_assert_initialized!();
        match value {
            0 => AggregatorStartTimeSelection::Zero,
            1 => AggregatorStartTimeSelection::First,
            2 => AggregatorStartTimeSelection::Set,
            value => AggregatorStartTimeSelection::__Unknown(value),
        }
    }
}

#[cfg(any(feature = "v1_18", feature = "dox"))]
impl StaticType for AggregatorStartTimeSelection {
    fn static_type() -> Type {
        unsafe { from_glib(gst_base_sys::gst_aggregator_start_time_selection_get_type()) }
    }
}

#[cfg(any(feature = "v1_18", feature = "dox"))]
impl<'a> FromValueOptional<'a> for AggregatorStartTimeSelection {
    unsafe fn from_value_optional(value: &Value) -> Option<Self> {
        Some(FromValue::from_value(value))
    }
}

#[cfg(any(feature = "v1_18", feature = "dox"))]
impl<'a> FromValue<'a> for AggregatorStartTimeSelection {
    unsafe fn from_value(value: &Value) -> Self {
        from_glib(gobject_sys::g_value_get_enum(value.to_glib_none().0))
    }
}

#[cfg(any(feature = "v1_18", feature = "dox"))]
impl SetValue for AggregatorStartTimeSelection {
    unsafe fn set_value(value: &mut Value, this: &Self) {
        gobject_sys::g_value_set_enum(value.to_glib_none_mut().0, this.to_glib())
    }
}