[][src]Struct x264_dev::raw::x264_param_t__bindgen_ty_3

#[repr(C)]pub struct x264_param_t__bindgen_ty_3 {
    pub i_rc_method: c_int,
    pub i_qp_constant: c_int,
    pub i_qp_min: c_int,
    pub i_qp_max: c_int,
    pub i_qp_step: c_int,
    pub i_bitrate: c_int,
    pub f_rf_constant: f32,
    pub f_rf_constant_max: f32,
    pub f_rate_tolerance: f32,
    pub i_vbv_max_bitrate: c_int,
    pub i_vbv_buffer_size: c_int,
    pub f_vbv_buffer_init: f32,
    pub f_ip_factor: f32,
    pub f_pb_factor: f32,
    pub b_filler: c_int,
    pub i_aq_mode: c_int,
    pub f_aq_strength: f32,
    pub b_mb_tree: c_int,
    pub i_lookahead: c_int,
    pub b_stat_write: c_int,
    pub psz_stat_out: *mut c_char,
    pub b_stat_read: c_int,
    pub psz_stat_in: *mut c_char,
    pub f_qcompress: f32,
    pub f_qblur: f32,
    pub f_complexity_blur: f32,
    pub zones: *mut x264_zone_t,
    pub i_zones: c_int,
    pub psz_zones: *mut c_char,
}

Fields

i_rc_method: c_inti_qp_constant: c_inti_qp_min: c_inti_qp_max: c_inti_qp_step: c_inti_bitrate: c_intf_rf_constant: f32f_rf_constant_max: f32f_rate_tolerance: f32i_vbv_max_bitrate: c_inti_vbv_buffer_size: c_intf_vbv_buffer_init: f32f_ip_factor: f32f_pb_factor: f32b_filler: c_inti_aq_mode: c_intf_aq_strength: f32b_mb_tree: c_inti_lookahead: c_intb_stat_write: c_intpsz_stat_out: *mut c_charb_stat_read: c_intpsz_stat_in: *mut c_charf_qcompress: f32f_qblur: f32f_complexity_blur: f32zones: *mut x264_zone_ti_zones: c_intpsz_zones: *mut c_char

Trait Implementations

impl Clone for x264_param_t__bindgen_ty_3[src]

impl Copy for x264_param_t__bindgen_ty_3[src]

impl Debug for x264_param_t__bindgen_ty_3[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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.