Enum mpeg2ts_reader::pes::PesError[][src]

pub enum PesError {
    FieldNotPresent,
    PtsDtsFlagsInvalid,
    NotEnoughData {
        requested: usize,
        available: usize,
    },
    MarkerBitNotSet,
}

Variants

The pts_dts_flags field of the PES packet signals that DTS is present and PTS is not, which not a valid combination

Fields of NotEnoughData

Marker bits are expected to always have the value 1 -- the value 0 presumably implies a parsing error.

Trait Implementations

impl Debug for PesError
[src]

Formats the value using the given formatter. Read more

impl PartialEq for PesError
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for PesError

impl Sync for PesError