gstreamer-rs/gstreamer-player/src/auto/enums.rs

335 lines
9.2 KiB
Rust

// 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
use glib::error::ErrorDomain;
use glib::translate::*;
use glib::value::FromValue;
use glib::value::ToValue;
use glib::Quark;
use glib::StaticType;
use glib::Type;
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy)]
#[non_exhaustive]
#[doc(alias = "GstPlayerColorBalanceType")]
pub enum PlayerColorBalanceType {
#[doc(alias = "GST_PLAYER_COLOR_BALANCE_HUE")]
Hue,
#[doc(alias = "GST_PLAYER_COLOR_BALANCE_BRIGHTNESS")]
Brightness,
#[doc(alias = "GST_PLAYER_COLOR_BALANCE_SATURATION")]
Saturation,
#[doc(alias = "GST_PLAYER_COLOR_BALANCE_CONTRAST")]
Contrast,
#[doc(hidden)]
__Unknown(i32),
}
impl PlayerColorBalanceType {
#[doc(alias = "gst_player_color_balance_type_get_name")]
#[doc(alias = "get_name")]
pub fn name(self) -> Option<glib::GString> {
assert_initialized_main_thread!();
unsafe {
from_glib_none(ffi::gst_player_color_balance_type_get_name(
self.into_glib(),
))
}
}
}
#[doc(hidden)]
impl IntoGlib for PlayerColorBalanceType {
type GlibType = ffi::GstPlayerColorBalanceType;
fn into_glib(self) -> ffi::GstPlayerColorBalanceType {
match self {
Self::Hue => ffi::GST_PLAYER_COLOR_BALANCE_HUE,
Self::Brightness => ffi::GST_PLAYER_COLOR_BALANCE_BRIGHTNESS,
Self::Saturation => ffi::GST_PLAYER_COLOR_BALANCE_SATURATION,
Self::Contrast => ffi::GST_PLAYER_COLOR_BALANCE_CONTRAST,
Self::__Unknown(value) => value,
}
}
}
#[doc(hidden)]
impl FromGlib<ffi::GstPlayerColorBalanceType> for PlayerColorBalanceType {
unsafe fn from_glib(value: ffi::GstPlayerColorBalanceType) -> Self {
skip_assert_initialized!();
match value {
3 => Self::Hue,
0 => Self::Brightness,
2 => Self::Saturation,
1 => Self::Contrast,
value => Self::__Unknown(value),
}
}
}
impl StaticType for PlayerColorBalanceType {
fn static_type() -> Type {
unsafe { from_glib(ffi::gst_player_color_balance_type_get_type()) }
}
}
impl glib::value::ValueType for PlayerColorBalanceType {
type Type = Self;
}
unsafe impl<'a> FromValue<'a> for PlayerColorBalanceType {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
from_glib(glib::gobject_ffi::g_value_get_enum(value.to_glib_none().0))
}
}
impl ToValue for PlayerColorBalanceType {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<Self>();
unsafe {
glib::gobject_ffi::g_value_set_enum(value.to_glib_none_mut().0, self.into_glib());
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
}
}
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy)]
#[non_exhaustive]
#[doc(alias = "GstPlayerError")]
pub enum PlayerError {
#[doc(alias = "GST_PLAYER_ERROR_FAILED")]
Failed,
#[doc(hidden)]
__Unknown(i32),
}
impl PlayerError {
#[doc(alias = "gst_player_error_get_name")]
#[doc(alias = "get_name")]
pub fn name(self) -> Option<glib::GString> {
assert_initialized_main_thread!();
unsafe { from_glib_none(ffi::gst_player_error_get_name(self.into_glib())) }
}
}
#[doc(hidden)]
impl IntoGlib for PlayerError {
type GlibType = ffi::GstPlayerError;
fn into_glib(self) -> ffi::GstPlayerError {
match self {
Self::Failed => ffi::GST_PLAYER_ERROR_FAILED,
Self::__Unknown(value) => value,
}
}
}
#[doc(hidden)]
impl FromGlib<ffi::GstPlayerError> for PlayerError {
unsafe fn from_glib(value: ffi::GstPlayerError) -> Self {
skip_assert_initialized!();
match value {
0 => Self::Failed,
value => Self::__Unknown(value),
}
}
}
impl ErrorDomain for PlayerError {
fn domain() -> Quark {
skip_assert_initialized!();
unsafe { from_glib(ffi::gst_player_error_quark()) }
}
fn code(self) -> i32 {
self.into_glib()
}
fn from(code: i32) -> Option<Self> {
skip_assert_initialized!();
match code {
0 => Some(Self::Failed),
_ => Some(Self::Failed),
}
}
}
impl StaticType for PlayerError {
fn static_type() -> Type {
unsafe { from_glib(ffi::gst_player_error_get_type()) }
}
}
impl glib::value::ValueType for PlayerError {
type Type = Self;
}
unsafe impl<'a> FromValue<'a> for PlayerError {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
from_glib(glib::gobject_ffi::g_value_get_enum(value.to_glib_none().0))
}
}
impl ToValue for PlayerError {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<Self>();
unsafe {
glib::gobject_ffi::g_value_set_enum(value.to_glib_none_mut().0, self.into_glib());
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
}
}
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy)]
#[non_exhaustive]
#[doc(alias = "GstPlayerSnapshotFormat")]
pub enum PlayerSnapshotFormat {
#[doc(alias = "GST_PLAYER_THUMBNAIL_RAW_NATIVE")]
RawNative,
#[doc(alias = "GST_PLAYER_THUMBNAIL_RAW_xRGB")]
RawXrgb,
#[doc(alias = "GST_PLAYER_THUMBNAIL_RAW_BGRx")]
RawBgrx,
#[doc(alias = "GST_PLAYER_THUMBNAIL_JPG")]
Jpg,
#[doc(alias = "GST_PLAYER_THUMBNAIL_PNG")]
Png,
#[doc(hidden)]
__Unknown(i32),
}
#[doc(hidden)]
impl IntoGlib for PlayerSnapshotFormat {
type GlibType = ffi::GstPlayerSnapshotFormat;
fn into_glib(self) -> ffi::GstPlayerSnapshotFormat {
match self {
Self::RawNative => ffi::GST_PLAYER_THUMBNAIL_RAW_NATIVE,
Self::RawXrgb => ffi::GST_PLAYER_THUMBNAIL_RAW_xRGB,
Self::RawBgrx => ffi::GST_PLAYER_THUMBNAIL_RAW_BGRx,
Self::Jpg => ffi::GST_PLAYER_THUMBNAIL_JPG,
Self::Png => ffi::GST_PLAYER_THUMBNAIL_PNG,
Self::__Unknown(value) => value,
}
}
}
#[doc(hidden)]
impl FromGlib<ffi::GstPlayerSnapshotFormat> for PlayerSnapshotFormat {
unsafe fn from_glib(value: ffi::GstPlayerSnapshotFormat) -> Self {
skip_assert_initialized!();
match value {
0 => Self::RawNative,
1 => Self::RawXrgb,
2 => Self::RawBgrx,
3 => Self::Jpg,
4 => Self::Png,
value => Self::__Unknown(value),
}
}
}
#[derive(Debug, Eq, PartialEq, Ord, PartialOrd, Hash, Clone, Copy)]
#[non_exhaustive]
#[doc(alias = "GstPlayerState")]
pub enum PlayerState {
#[doc(alias = "GST_PLAYER_STATE_STOPPED")]
Stopped,
#[doc(alias = "GST_PLAYER_STATE_BUFFERING")]
Buffering,
#[doc(alias = "GST_PLAYER_STATE_PAUSED")]
Paused,
#[doc(alias = "GST_PLAYER_STATE_PLAYING")]
Playing,
#[doc(hidden)]
__Unknown(i32),
}
impl PlayerState {
#[doc(alias = "gst_player_state_get_name")]
#[doc(alias = "get_name")]
pub fn name(self) -> Option<glib::GString> {
assert_initialized_main_thread!();
unsafe { from_glib_none(ffi::gst_player_state_get_name(self.into_glib())) }
}
}
#[doc(hidden)]
impl IntoGlib for PlayerState {
type GlibType = ffi::GstPlayerState;
fn into_glib(self) -> ffi::GstPlayerState {
match self {
Self::Stopped => ffi::GST_PLAYER_STATE_STOPPED,
Self::Buffering => ffi::GST_PLAYER_STATE_BUFFERING,
Self::Paused => ffi::GST_PLAYER_STATE_PAUSED,
Self::Playing => ffi::GST_PLAYER_STATE_PLAYING,
Self::__Unknown(value) => value,
}
}
}
#[doc(hidden)]
impl FromGlib<ffi::GstPlayerState> for PlayerState {
unsafe fn from_glib(value: ffi::GstPlayerState) -> Self {
skip_assert_initialized!();
match value {
0 => Self::Stopped,
1 => Self::Buffering,
2 => Self::Paused,
3 => Self::Playing,
value => Self::__Unknown(value),
}
}
}
impl StaticType for PlayerState {
fn static_type() -> Type {
unsafe { from_glib(ffi::gst_player_state_get_type()) }
}
}
impl glib::value::ValueType for PlayerState {
type Type = Self;
}
unsafe impl<'a> FromValue<'a> for PlayerState {
type Checker = glib::value::GenericValueTypeChecker<Self>;
unsafe fn from_value(value: &'a glib::Value) -> Self {
skip_assert_initialized!();
from_glib(glib::gobject_ffi::g_value_get_enum(value.to_glib_none().0))
}
}
impl ToValue for PlayerState {
fn to_value(&self) -> glib::Value {
let mut value = glib::Value::for_value_type::<Self>();
unsafe {
glib::gobject_ffi::g_value_set_enum(value.to_glib_none_mut().0, self.into_glib());
}
value
}
fn value_type(&self) -> glib::Type {
Self::static_type()
}
}