#[repr(C)]
pub struct AVCodecParserContext {
Show 35 fields pub priv_data: *mut c_void, pub parser: *const AVCodecParser, pub frame_offset: i64, pub cur_offset: i64, pub next_frame_offset: i64, pub pict_type: c_int, pub repeat_pict: c_int, pub pts: i64, pub dts: i64, pub last_pts: i64, pub last_dts: i64, pub fetch_timestamp: c_int, pub cur_frame_start_index: c_int, pub cur_frame_offset: [i64; 4], pub cur_frame_pts: [i64; 4], pub cur_frame_dts: [i64; 4], pub flags: c_int, pub offset: i64, pub cur_frame_end: [i64; 4], pub key_frame: c_int, pub dts_sync_point: c_int, pub dts_ref_dts_delta: c_int, pub pts_dts_delta: c_int, pub cur_frame_pos: [i64; 4], pub pos: i64, pub last_pos: i64, pub duration: c_int, pub field_order: c_uint, pub picture_structure: c_uint, pub output_picture_number: c_int, pub width: c_int, pub height: c_int, pub coded_width: c_int, pub coded_height: c_int, pub format: c_int,
}

Fields§

§priv_data: *mut c_void§parser: *const AVCodecParser§frame_offset: i64§cur_offset: i64§next_frame_offset: i64§pict_type: c_int§repeat_pict: c_int§pts: i64§dts: i64§last_pts: i64§last_dts: i64§fetch_timestamp: c_int§cur_frame_start_index: c_int§cur_frame_offset: [i64; 4]§cur_frame_pts: [i64; 4]§cur_frame_dts: [i64; 4]§flags: c_int§offset: i64§cur_frame_end: [i64; 4]§key_frame: c_int§dts_sync_point: c_int§dts_ref_dts_delta: c_int§pts_dts_delta: c_int§cur_frame_pos: [i64; 4]§pos: i64§last_pos: i64§duration: c_int§field_order: c_uint§picture_structure: c_uint§output_picture_number: c_int§width: c_int§height: c_int§coded_width: c_int§coded_height: c_int§format: c_int

Trait Implementations§

source§

impl Clone for AVCodecParserContext

source§

fn clone(&self) -> AVCodecParserContext

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AVCodecParserContext

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Copy for AVCodecParserContext

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.