[][src]Enum ffmpeg_sys_next::AVDiscard

#[repr(i32)]pub enum AVDiscard {
    AVDISCARD_NONE,
    AVDISCARD_DEFAULT,
    AVDISCARD_NONREF,
    AVDISCARD_BIDIR,
    AVDISCARD_NONINTRA,
    AVDISCARD_NONKEY,
    AVDISCARD_ALL,
}

@ingroup lavc_decoding

Variants

AVDISCARD_NONE

< discard nothing

AVDISCARD_DEFAULT

< discard useless packets like 0 size packets in avi

AVDISCARD_NONREF

< discard all non reference

AVDISCARD_BIDIR

< discard all bidirectional frames

AVDISCARD_NONINTRA

< discard all non intra frames

AVDISCARD_NONKEY

< discard all frames except keyframes

AVDISCARD_ALL

< discard all

Trait Implementations

impl Clone for AVDiscard[src]

impl Copy for AVDiscard[src]

impl Debug for AVDiscard[src]

impl Eq for AVDiscard[src]

impl Hash for AVDiscard[src]

impl PartialEq<AVDiscard> for AVDiscard[src]

impl StructuralEq for AVDiscard[src]

impl StructuralPartialEq for AVDiscard[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.