Home
last modified time | relevance | path

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

/external/libvpx/libvpx/test/
Dvp9_arf_freq_test.cc42 int cpu_used; member
159 encoder->Control(VP8E_SET_CPUUSED, test_encode_param_.cpu_used); in PreEncodeFrameHook()
/external/libvpx/libvpx/vp8/common/
Donyx.h123 int cpu_used; member
/external/libvpx/libvpx/vp8/
Dvp8_cx_iface.c31 int cpu_used; /** available cpu percentage in 1/16*/ member
188 RANGE_CHECK(vp8_cfg, cpu_used, -16, 16); in validate_config()
394 oxcf->cpu_used = vp8_cfg.cpu_used; in set_vp8e_config()
515 extra_cfg.cpu_used = CAST(VP8E_SET_CPUUSED, args); in set_cpu_used()
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c1030 if (cpi->oxcf.cpu_used <= 5) in estimate_max_q()
1031 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_max_q()
1134 if (cpi->oxcf.cpu_used <= 5) in estimate_cq()
1135 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_cq()
1202 if (cpi->oxcf.cpu_used <= 5) in estimate_q()
1203 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_q()
1281 if (cpi->oxcf.cpu_used <= 5) in estimate_kf_group_q()
1282 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_kf_group_q()
Donyx_if.c1526 if (cpi->oxcf.cpu_used < -16) in vp8_change_config()
1528 cpi->oxcf.cpu_used = -16; in vp8_change_config()
1531 if (cpi->oxcf.cpu_used > 16) in vp8_change_config()
1532 cpi->oxcf.cpu_used = 16; in vp8_change_config()
1540 if (cpi->oxcf.cpu_used < -5) in vp8_change_config()
1542 cpi->oxcf.cpu_used = -5; in vp8_change_config()
1545 if (cpi->oxcf.cpu_used > 5) in vp8_change_config()
1546 cpi->oxcf.cpu_used = 5; in vp8_change_config()
1563 if (cpi->oxcf.cpu_used < -5) in vp8_change_config()
1565 cpi->oxcf.cpu_used = -5; in vp8_change_config()
[all …]
Donyx_int.h475 int cpu_used; member
Dencodeframe.c754 if (cpi->oxcf.cpu_used < 0) in vp8_encode_frame()
755 cpi->Speed = -(cpi->oxcf.cpu_used); in vp8_encode_frame()
Drdopt.c347 milliseconds_for_compress = milliseconds_for_compress * (16 - cpi->oxcf.cpu_used) / 16; in vp8_auto_select_speed()
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c25 int cpu_used; // available cpu percentage in 1/16 member
244 RANGE_CHECK(extra_cfg, cpu_used, -8, 8); in validate_config()
463 oxcf->speed = abs(extra_cfg->cpu_used); in set_encoder_config()
629 extra_cfg.cpu_used = CAST(VP8E_SET_CPUUSED, args); in ctrl_set_cpuused()