[][src]Struct stainless_ffmpeg_sys::AVCodecParser

#[repr(C)]pub struct AVCodecParser {
    pub codec_ids: [c_int; 5],
    pub priv_data_size: c_int,
    pub parser_init: Option<unsafe extern "C" fn(s: *mut AVCodecParserContext) -> c_int>,
    pub parser_parse: Option<unsafe extern "C" fn(s: *mut AVCodecParserContext, avctx: *mut AVCodecContext, poutbuf: *mut *const u8, poutbuf_size: *mut c_int, buf: *const u8, buf_size: c_int) -> c_int>,
    pub parser_close: Option<unsafe extern "C" fn(s: *mut AVCodecParserContext)>,
    pub split: Option<unsafe extern "C" fn(avctx: *mut AVCodecContext, buf: *const u8, buf_size: c_int) -> c_int>,
    pub next: *mut AVCodecParser,
}

Fields

codec_ids: [c_int; 5]priv_data_size: c_intparser_init: Option<unsafe extern "C" fn(s: *mut AVCodecParserContext) -> c_int>parser_parse: Option<unsafe extern "C" fn(s: *mut AVCodecParserContext, avctx: *mut AVCodecContext, poutbuf: *mut *const u8, poutbuf_size: *mut c_int, buf: *const u8, buf_size: c_int) -> c_int>parser_close: Option<unsafe extern "C" fn(s: *mut AVCodecParserContext)>split: Option<unsafe extern "C" fn(avctx: *mut AVCodecContext, buf: *const u8, buf_size: c_int) -> c_int>next: *mut AVCodecParser

Trait Implementations

impl Clone for AVCodecParser[src]

impl Copy for AVCodecParser[src]

impl Debug for AVCodecParser[src]

impl Eq for AVCodecParser[src]

impl PartialEq<AVCodecParser> for AVCodecParser[src]

impl StructuralEq for AVCodecParser[src]

impl StructuralPartialEq for AVCodecParser[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.