[][src]Struct ffmpeg_dev::sys::ParseContext

#[repr(C)]
pub struct ParseContext {
    pub buffer: *mut u8,
    pub index: c_int,
    pub last_index: c_int,
    pub buffer_size: c_uint,
    pub state: u32,
    pub frame_start_found: c_int,
    pub overread: c_int,
    pub overread_index: c_int,
    pub state64: u64,
}

Fields

buffer: *mut u8index: c_intlast_index: c_intbuffer_size: c_uintstate: u32

< contains the last few bytes in MSB order

frame_start_found: c_intoverread: c_int

< the number of bytes which where irreversibly read from the next frame

overread_index: c_int

< the index into ParseContext.buffer of the overread bytes

state64: u64

< contains the last 8 bytes in MSB order

Trait Implementations

impl Clone for ParseContext[src]

impl Copy for ParseContext[src]

impl Debug for ParseContext[src]

Auto Trait Implementations

Blanket Implementations

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 = !

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.

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

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

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