[][src]Enum mpeg2ts_reader::pes::DsmTrickMode

pub enum DsmTrickMode {
    FastForward {
        field_id: u8,
        intra_slice_refresh: bool,
        frequency_truncation: FrequencyTruncationCoefficientSelection,
    },
    SlowMotion {
        rep_cntrl: u8,
    },
    FreezeFrame {
        field_id: u8,
        reserved: u8,
    },
    FastReverse {
        field_id: u8,
        intra_slice_refresh: bool,
        frequency_truncation: FrequencyTruncationCoefficientSelection,
    },
    SlowReverse {
        rep_cntrl: u8,
    },
    Reserved {
        reserved: u8,
    },
}

Digital Storage Media 'trick mode' options.

Returned by PesParsedContents::dsm_trick_mode().

Variants

FastForward

Fields of FastForward

field_id: u8intra_slice_refresh: boolfrequency_truncation: FrequencyTruncationCoefficientSelection
SlowMotion

Fields of SlowMotion

rep_cntrl: u8
FreezeFrame

Fields of FreezeFrame

field_id: u8reserved: u8
FastReverse

Fields of FastReverse

field_id: u8intra_slice_refresh: boolfrequency_truncation: FrequencyTruncationCoefficientSelection
SlowReverse

Fields of SlowReverse

rep_cntrl: u8
Reserved

Fields of Reserved

reserved: u8

Trait Implementations

impl Debug for DsmTrickMode[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.