[][src]Struct ffmpeg_dev::sys::ERContext

#[repr(C)]
pub struct ERContext {
    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 AVCodecContextmecc: MECmpContextmecc_inited: c_intmb_index2xy: *mut c_intmb_num: c_intmb_width: c_intmb_height: c_intmb_stride: isizeb8_stride: isizeerror_count: atomic_interror_occurred: c_interror_status_table: *mut u8er_temp_buffer: *mut u8dc_val: [*mut i16; 3]mbskip_table: *mut u8mbintra_table: *mut u8mv: [[[c_int; 2]; 4]; 2]cur_pic: ERPicturelast_pic: ERPicturenext_pic: ERPictureref_index_buf: [*mut AVBufferRef; 2]motion_val_buf: [*mut AVBufferRef; 2]pp_time: u16pb_time: u16quarter_sample: c_intpartitioned_frame: c_intref_count: c_intdecode_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

impl Clone for ERContext[src]

impl Copy for ERContext[src]

impl Debug for ERContext[src]

Auto Trait Implementations

Blanket Implementations

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 = !

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]