Searched refs:cpu_used (Results 1 – 8 of 8) sorted by relevance
/external/libvpx/vp8/ |
D | vp8_cx_iface.c | 31 int cpu_used; /** available cpu percentage in 1/16*/ member 179 RANGE_CHECK(vp8_cfg, cpu_used, -16, 16); in validate_config() 184 …if (!((vp8_cfg->cpu_used >= -16 && vp8_cfg->cpu_used <= -4) || (vp8_cfg->cpu_used >= 4 && vp8_cfg-… in validate_config() 337 oxcf->cpu_used = vp8_cfg.cpu_used; in set_vp8e_config() 455 MAP(VP8E_SET_CPUUSED, xcfg.cpu_used); in set_param()
|
/external/libvpx/vp8/common/ |
D | onyx.h | 111 int cpu_used; member
|
/external/libvpx/vp8/encoder/ |
D | firstpass.c | 887 if (cpi->oxcf.cpu_used <= 5) in estimate_max_q() 888 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_max_q() 961 if (cpi->oxcf.cpu_used <= 5) in estimate_q() 962 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_q() 1038 if (cpi->oxcf.cpu_used <= 5) in estimate_kf_group_q() 1039 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_kf_group_q() 1115 if (cpi->oxcf.cpu_used <= 5) in estimate_cq() 1116 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_cq()
|
D | onyx_if.c | 1535 if (cpi->oxcf.cpu_used < -16) in vp8_change_config() 1537 cpi->oxcf.cpu_used = -16; in vp8_change_config() 1540 if (cpi->oxcf.cpu_used > 16) in vp8_change_config() 1541 cpi->oxcf.cpu_used = 16; in vp8_change_config() 1550 if (cpi->oxcf.cpu_used < -5) in vp8_change_config() 1552 cpi->oxcf.cpu_used = -5; in vp8_change_config() 1555 if (cpi->oxcf.cpu_used > 5) in vp8_change_config() 1556 cpi->oxcf.cpu_used = 5; in vp8_change_config() 1573 if (cpi->oxcf.cpu_used < -5) in vp8_change_config() 1575 cpi->oxcf.cpu_used = -5; in vp8_change_config() [all …]
|
D | onyx_int.h | 524 int cpu_used; member
|
D | encodeframe.c | 759 if (cpi->oxcf.cpu_used < 0) in vp8_encode_frame() 760 cpi->Speed = -(cpi->oxcf.cpu_used); in vp8_encode_frame()
|
D | rdopt.c | 308 int used = cpi->oxcf.cpu_used; in vp8_auto_select_speed() 312 milliseconds_for_compress = milliseconds_for_compress * (16 - cpi->oxcf.cpu_used) / 16; in vp8_auto_select_speed()
|
/external/libvpx/ |
D | vpxenc.c | 1008 static const arg_def_t cpu_used = ARG_DEF(NULL, "cpu-used", 1, variable 1036 &cpu_used, &auto_altref, &noise_sens, &sharpness, &static_thresh,
|