[][src]Struct ffmpeg_dev::sys::RateControlEntry

#[repr(C)]
pub struct RateControlEntry {
    pub pict_type: c_int,
    pub qscale: f32,
    pub mv_bits: c_int,
    pub i_tex_bits: c_int,
    pub p_tex_bits: c_int,
    pub misc_bits: c_int,
    pub header_bits: c_int,
    pub expected_bits: u64,
    pub new_pict_type: c_int,
    pub new_qscale: f32,
    pub mc_mb_var_sum: i64,
    pub mb_var_sum: i64,
    pub i_count: c_int,
    pub skip_count: c_int,
    pub f_code: c_int,
    pub b_code: c_int,
}

Fields

pict_type: c_intqscale: f32mv_bits: c_inti_tex_bits: c_intp_tex_bits: c_intmisc_bits: c_intheader_bits: c_intexpected_bits: u64new_pict_type: c_intnew_qscale: f32mc_mb_var_sum: i64mb_var_sum: i64i_count: c_intskip_count: c_intf_code: c_intb_code: c_int

Trait Implementations

impl Clone for RateControlEntry[src]

impl Copy for RateControlEntry[src]

impl Debug for RateControlEntry[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]