mirror_ffmpeg_sys

Struct AVCodecParserContext

Source
#[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: AVFieldOrder, pub picture_structure: AVPictureStructure, 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: AVFieldOrder§picture_structure: AVPictureStructure§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 PartialEq for AVCodecParserContext

Source§

fn eq(&self, other: &AVCodecParserContext) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for AVCodecParserContext

Source§

impl Eq for AVCodecParserContext

Source§

impl StructuralPartialEq 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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,

Source§

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>,

Source§

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>,

Source§

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.