Struct ERContext

Source
#[repr(C)]
pub struct ERContext {
Show 29 fields pub avctx: *mut AVCodecContext, pub mecc: MECmpContext, pub mecc_inited: c_int, pub mb_index2xy: *mut c_int, pub mb_num: c_int, pub mb_width: c_int, pub mb_height: c_int, pub mb_stride: isize, pub b8_stride: isize, pub error_count: atomic_int, pub error_occurred: c_int, pub error_status_table: *mut u8, pub er_temp_buffer: *mut u8, pub dc_val: [*mut i16; 3], pub mbskip_table: *mut u8, pub mbintra_table: *mut u8, pub mv: [[[c_int; 2]; 4]; 2], pub cur_pic: ERPicture, pub last_pic: ERPicture, pub next_pic: ERPicture, pub ref_index_buf: [*mut AVBufferRef; 2], pub motion_val_buf: [*mut AVBufferRef; 2], pub pp_time: u16, pub pb_time: u16, pub quarter_sample: c_int, pub partitioned_frame: c_int, pub ref_count: c_int, pub decode_mb: Option<unsafe extern "C" fn(opaque: *mut c_void, ref_: c_int, mv_dir: c_int, mv_type: c_int, mv: *mut [[[c_int; 2]; 4]; 2], mb_x: c_int, mb_y: c_int, mb_intra: c_int, mb_skipped: c_int)>, pub opaque: *mut c_void,
}

Fields§

§avctx: *mut AVCodecContext§mecc: MECmpContext§mecc_inited: c_int§mb_index2xy: *mut c_int§mb_num: c_int§mb_width: c_int§mb_height: c_int§mb_stride: isize§b8_stride: isize§error_count: atomic_int§error_occurred: c_int§error_status_table: *mut u8§er_temp_buffer: *mut u8§dc_val: [*mut i16; 3]§mbskip_table: *mut u8§mbintra_table: *mut u8§mv: [[[c_int; 2]; 4]; 2]§cur_pic: ERPicture§last_pic: ERPicture§next_pic: ERPicture§ref_index_buf: [*mut AVBufferRef; 2]§motion_val_buf: [*mut AVBufferRef; 2]§pp_time: u16§pb_time: u16§quarter_sample: c_int§partitioned_frame: c_int§ref_count: c_int§decode_mb: Option<unsafe extern "C" fn(opaque: *mut c_void, ref_: c_int, mv_dir: c_int, mv_type: c_int, mv: *mut [[[c_int; 2]; 4]; 2], mb_x: c_int, mb_y: c_int, mb_intra: c_int, mb_skipped: c_int)>§opaque: *mut c_void

Trait Implementations§

Source§

impl Clone for ERContext

Source§

fn clone(&self) -> ERContext

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 ERContext

Source§

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

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

impl Copy for ERContext

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.