#[repr(u32)]
pub enum AVAppToDevMessageType {
    AV_APP_TO_DEV_NONE,
    AV_APP_TO_DEV_WINDOW_SIZE,
    AV_APP_TO_DEV_WINDOW_REPAINT,
    AV_APP_TO_DEV_PAUSE,
    AV_APP_TO_DEV_PLAY,
    AV_APP_TO_DEV_TOGGLE_PAUSE,
    AV_APP_TO_DEV_SET_VOLUME,
    AV_APP_TO_DEV_MUTE,
    AV_APP_TO_DEV_UNMUTE,
    AV_APP_TO_DEV_TOGGLE_MUTE,
    AV_APP_TO_DEV_GET_VOLUME,
    AV_APP_TO_DEV_GET_MUTE,
}
Expand description

Message types used by avdevice_app_to_dev_control_message().

Variants§

§

AV_APP_TO_DEV_NONE

Dummy message.

§

AV_APP_TO_DEV_WINDOW_SIZE

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

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

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

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

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

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

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

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

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

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

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<AVAppToDevMessageType> 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 StructuralEq for AVAppToDevMessageType

source§

impl StructuralPartialEq for AVAppToDevMessageType

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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 Twhere 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 Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.