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
151 encoder->Control(VP8E_SET_CPUUSED, test_encode_param_.cpu_used); in PreEncodeFrameHook()
/external/libvpx/libvpx/vp8/
Dvp8_cx_iface.c30 int cpu_used; /** available cpu percentage in 1/16*/ member
185 RANGE_CHECK(vp8_cfg, cpu_used, -16, 16); in validate_config()
373 oxcf->cpu_used = vp8_cfg.cpu_used; in set_vp8e_config()
486 extra_cfg.cpu_used = CAST(VP8E_SET_CPUUSED, args); in set_cpu_used()
/external/libvpx/libvpx/vp8/common/
Donyx.h111 int cpu_used; member
/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c966 if (cpi->oxcf.cpu_used <= 5) { in estimate_max_q()
967 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_max_q()
1064 if (cpi->oxcf.cpu_used <= 5) { in estimate_cq()
1065 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_cq()
1128 if (cpi->oxcf.cpu_used <= 5) { in estimate_q()
1129 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_q()
1206 if (cpi->oxcf.cpu_used <= 5) { in estimate_kf_group_q()
1207 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_kf_group_q()
Donyx_if.c1459 if (cpi->oxcf.cpu_used < -16) { in vp8_change_config()
1460 cpi->oxcf.cpu_used = -16; in vp8_change_config()
1463 if (cpi->oxcf.cpu_used > 16) cpi->oxcf.cpu_used = 16; in vp8_change_config()
1471 if (cpi->oxcf.cpu_used < -5) { in vp8_change_config()
1472 cpi->oxcf.cpu_used = -5; in vp8_change_config()
1475 if (cpi->oxcf.cpu_used > 5) cpi->oxcf.cpu_used = 5; in vp8_change_config()
1492 if (cpi->oxcf.cpu_used < -5) { in vp8_change_config()
1493 cpi->oxcf.cpu_used = -5; in vp8_change_config()
1496 if (cpi->oxcf.cpu_used > 5) cpi->oxcf.cpu_used = 5; in vp8_change_config()
1698 cpi->Speed = cpi->oxcf.cpu_used; in vp8_change_config()
Donyx_int.h456 int cpu_used; member
Dencodeframe.c683 if (cpi->oxcf.cpu_used < 0) { in vp8_encode_frame()
684 cpi->Speed = -(cpi->oxcf.cpu_used); in vp8_encode_frame()
Drdopt.c265 milliseconds_for_compress * (16 - cpi->oxcf.cpu_used) / 16; in vp8_auto_select_speed()
/external/libvpx/libvpx/vp9/
Dvp9_cx_iface.c26 int cpu_used; // available cpu percentage in 1/16 member
267 RANGE_CHECK(extra_cfg, cpu_used, -8, 8); in validate_config()
537 oxcf->speed = abs(extra_cfg->cpu_used); in set_encoder_config()
719 extra_cfg.cpu_used = CAST(VP8E_SET_CPUUSED, args); in ctrl_set_cpuused()