Struct ffmpeg_sys_next::AVCodecParser
source · [−]#[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 AVCodecParserTrait Implementations
sourceimpl Clone for AVCodecParser
impl Clone for AVCodecParser
sourcefn clone(&self) -> AVCodecParser
fn clone(&self) -> AVCodecParser
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for AVCodecParser
impl Debug for AVCodecParser
sourceimpl PartialEq<AVCodecParser> for AVCodecParser
impl PartialEq<AVCodecParser> for AVCodecParser
sourcefn eq(&self, other: &AVCodecParser) -> bool
fn eq(&self, other: &AVCodecParser) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &AVCodecParser) -> bool
fn ne(&self, other: &AVCodecParser) -> bool
This method tests for !=.
impl Copy for AVCodecParser
impl Eq for AVCodecParser
impl StructuralEq for AVCodecParser
impl StructuralPartialEq for AVCodecParser
Auto Trait Implementations
impl RefUnwindSafe for AVCodecParser
impl !Send for AVCodecParser
impl !Sync for AVCodecParser
impl Unpin for AVCodecParser
impl UnwindSafe for AVCodecParser
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more