Home
last modified time | relevance | path

Searched refs:cpu_used (Results 1 – 8 of 8) sorted by relevance

/external/libvpx/vp8/
Dvp8_cx_iface.c31 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/
Donyx.h111 int cpu_used; member
/external/libvpx/vp8/encoder/
Dfirstpass.c887 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()
Donyx_if.c1535 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 …]
Donyx_int.h524 int cpu_used; member
Dencodeframe.c759 if (cpi->oxcf.cpu_used < 0) in vp8_encode_frame()
760 cpi->Speed = -(cpi->oxcf.cpu_used); in vp8_encode_frame()
Drdopt.c308 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/
Dvpxenc.c1008 static const arg_def_t cpu_used = ARG_DEF(NULL, "cpu-used", 1, variable
1036 &cpu_used, &auto_altref, &noise_sens, &sharpness, &static_thresh,