Searched refs:cpu_used (Results 1 – 11 of 11) sorted by relevance
/external/libvpx/libvpx/test/ |
D | vp9_arf_freq_test.cc | 44 int cpu_used; member 153 encoder->Control(VP8E_SET_CPUUSED, test_encode_param_.cpu_used); in PreEncodeFrameHook()
|
/external/libaom/libaom/test/ |
D | arf_freq_test.cc | 45 int cpu_used; member 150 encoder->Control(AOME_SET_CPUUSED, test_encode_param_.cpu_used); in PreEncodeFrameHook()
|
/external/libvpx/libvpx/vp8/ |
D | vp8_cx_iface.c | 32 int cpu_used; /** available cpu percentage in 1/16*/ member 206 RANGE_CHECK(vp8_cfg, cpu_used, -16, 16); in validate_config() 392 oxcf->cpu_used = vp8_cfg.cpu_used; in set_vp8e_config() 505 extra_cfg.cpu_used = CAST(VP8E_SET_CPUUSED, args); in set_cpu_used() 507 extra_cfg.cpu_used = VPXMIN(16, extra_cfg.cpu_used); in set_cpu_used() 508 extra_cfg.cpu_used = VPXMAX(-16, extra_cfg.cpu_used); in set_cpu_used()
|
/external/libvpx/libvpx/vp8/common/ |
D | onyx.h | 111 int cpu_used; member
|
/external/libvpx/libvpx/vp9/ |
D | vp9_cx_iface.c | 32 int cpu_used; // available cpu percentage in 1/16 member 278 RANGE_CHECK(extra_cfg, cpu_used, -9, 9); in validate_config() 564 oxcf->speed = abs(extra_cfg->cpu_used); in set_encoder_config() 716 extra_cfg.cpu_used = CAST(VP8E_SET_CPUUSED, args); in ctrl_set_cpuused() 717 extra_cfg.cpu_used = VPXMIN(9, extra_cfg.cpu_used); in ctrl_set_cpuused() 718 extra_cfg.cpu_used = VPXMAX(-9, extra_cfg.cpu_used); in ctrl_set_cpuused()
|
/external/libvpx/libvpx/vp8/encoder/ |
D | firstpass.c | 961 if (cpi->oxcf.cpu_used <= 5) { in estimate_max_q() 962 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_max_q() 1059 if (cpi->oxcf.cpu_used <= 5) { in estimate_cq() 1060 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_cq() 1122 if (cpi->oxcf.cpu_used <= 5) { in estimate_q() 1123 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_q() 1200 if (cpi->oxcf.cpu_used <= 5) { in estimate_kf_group_q() 1201 speed_correction = 1.04 + (cpi->oxcf.cpu_used * 0.04); in estimate_kf_group_q()
|
D | onyx_if.c | 1455 if (cpi->oxcf.cpu_used < -16) { in vp8_change_config() 1456 cpi->oxcf.cpu_used = -16; in vp8_change_config() 1459 if (cpi->oxcf.cpu_used > 16) cpi->oxcf.cpu_used = 16; in vp8_change_config() 1467 if (cpi->oxcf.cpu_used < -5) { in vp8_change_config() 1468 cpi->oxcf.cpu_used = -5; in vp8_change_config() 1471 if (cpi->oxcf.cpu_used > 5) cpi->oxcf.cpu_used = 5; in vp8_change_config() 1488 if (cpi->oxcf.cpu_used < -5) { in vp8_change_config() 1489 cpi->oxcf.cpu_used = -5; in vp8_change_config() 1492 if (cpi->oxcf.cpu_used > 5) cpi->oxcf.cpu_used = 5; in vp8_change_config() 1700 cpi->Speed = cpi->oxcf.cpu_used; in vp8_change_config()
|
D | onyx_int.h | 460 int cpu_used; member
|
D | encodeframe.c | 683 if (cpi->oxcf.cpu_used < 0) { in vp8_encode_frame() 684 cpi->Speed = -(cpi->oxcf.cpu_used); in vp8_encode_frame()
|
D | rdopt.c | 265 milliseconds_for_compress * (16 - cpi->oxcf.cpu_used) / 16; in vp8_auto_select_speed()
|
/external/libaom/libaom/av1/ |
D | av1_cx_iface.c | 32 int cpu_used; member 431 RANGE_CHECK(extra_cfg, cpu_used, 0, 8); in validate_config() 854 oxcf->speed = extra_cfg->cpu_used; in set_encoder_config() 1104 extra_cfg.cpu_used = CAST(AOME_SET_CPUUSED, args); in ctrl_set_cpuused()
|