#[repr(u32)]
pub enum AVAppToDevMessageType { AV_APP_TO_DEV_NONE = 1_313_820_229, AV_APP_TO_DEV_WINDOW_SIZE = 1_195_724_621, AV_APP_TO_DEV_WINDOW_REPAINT = 1_380_274_241, AV_APP_TO_DEV_PAUSE = 1_346_458_912, AV_APP_TO_DEV_PLAY = 1_347_174_745, AV_APP_TO_DEV_TOGGLE_PAUSE = 1_346_458_964, AV_APP_TO_DEV_SET_VOLUME = 1_398_165_324, AV_APP_TO_DEV_MUTE = 541_939_028, AV_APP_TO_DEV_UNMUTE = 1_431_131_476, AV_APP_TO_DEV_TOGGLE_MUTE = 1_414_354_260, AV_APP_TO_DEV_GET_VOLUME = 1_196_838_732, AV_APP_TO_DEV_GET_MUTE = 1_196_250_452, }
Expand description

Message types used by avdevice_app_to_dev_control_message().

Variants§

§

AV_APP_TO_DEV_NONE = 1_313_820_229

Dummy message.

§

AV_APP_TO_DEV_WINDOW_SIZE = 1_195_724_621

Window size change message.

Message is sent to the device every time the application changes the size of the window device renders to. Message should also be sent right after window is created.

data: AVDeviceRect: new window size.

§

AV_APP_TO_DEV_WINDOW_REPAINT = 1_380_274_241

Repaint request message.

Message is sent to the device when window has to be repainted.

data: AVDeviceRect: area required to be repainted. NULL: whole area is required to be repainted.

§

AV_APP_TO_DEV_PAUSE = 1_346_458_912

Request pause/play.

Application requests pause/unpause playback. Mostly usable with devices that have internal buffer. By default devices are not paused.

data: NULL

§

AV_APP_TO_DEV_PLAY = 1_347_174_745

Request pause/play.

Application requests pause/unpause playback. Mostly usable with devices that have internal buffer. By default devices are not paused.

data: NULL

§

AV_APP_TO_DEV_TOGGLE_PAUSE = 1_346_458_964

Request pause/play.

Application requests pause/unpause playback. Mostly usable with devices that have internal buffer. By default devices are not paused.

data: NULL

§

AV_APP_TO_DEV_SET_VOLUME = 1_398_165_324

Volume control message.

Set volume level. It may be device-dependent if volume is changed per stream or system wide. Per stream volume change is expected when possible.

data: double: new volume with range of 0.0 - 1.0.

§

AV_APP_TO_DEV_MUTE = 541_939_028

Mute control messages.

Change mute state. It may be device-dependent if mute status is changed per stream or system wide. Per stream mute status change is expected when possible.

data: NULL.

§

AV_APP_TO_DEV_UNMUTE = 1_431_131_476

Mute control messages.

Change mute state. It may be device-dependent if mute status is changed per stream or system wide. Per stream mute status change is expected when possible.

data: NULL.

§

AV_APP_TO_DEV_TOGGLE_MUTE = 1_414_354_260

Mute control messages.

Change mute state. It may be device-dependent if mute status is changed per stream or system wide. Per stream mute status change is expected when possible.

data: NULL.

§

AV_APP_TO_DEV_GET_VOLUME = 1_196_838_732

Get volume/mute messages.

Force the device to send AV_DEV_TO_APP_VOLUME_LEVEL_CHANGED or AV_DEV_TO_APP_MUTE_STATE_CHANGED command respectively.

data: NULL.

§

AV_APP_TO_DEV_GET_MUTE = 1_196_250_452

Get volume/mute messages.

Force the device to send AV_DEV_TO_APP_VOLUME_LEVEL_CHANGED or AV_DEV_TO_APP_MUTE_STATE_CHANGED command respectively.

data: NULL.

Trait Implementations§

source§

impl Clone for AVAppToDevMessageType

source§

fn clone(&self) -> AVAppToDevMessageType

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AVAppToDevMessageType

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Hash for AVAppToDevMessageType

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for AVAppToDevMessageType

source§

fn eq(&self, other: &AVAppToDevMessageType) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for AVAppToDevMessageType

source§

impl Eq for AVAppToDevMessageType

source§

impl StructuralPartialEq for AVAppToDevMessageType

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.