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

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> 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, 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.