Home
last modified time | relevance | path

Searched refs:rd_mult_key_qp_fac (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/external/libvpx/vp9/
H A Dvp9_cx_iface.c383 RANGE_CHECK(cfg, rd_mult_key_qp_fac.den, 1, 1000); in validate_config()
793 cpi->rd_ctrl.rd_mult_key_qp_fac = in set_twopass_params_from_config()
794 (double)cfg->rd_mult_key_qp_fac.num / (double)cfg->rd_mult_key_qp_fac.den; in set_twopass_params_from_config()
795 if (cpi->rd_ctrl.rd_mult_key_qp_fac < 0.25) in set_twopass_params_from_config()
796 cpi->rd_ctrl.rd_mult_key_qp_fac = 0.25; in set_twopass_params_from_config()
797 else if (cpi->rd_ctrl.rd_mult_key_qp_fac > 4.0) in set_twopass_params_from_config()
798 cpi->rd_ctrl.rd_mult_key_qp_fac = 4.0; in set_twopass_params_from_config()
/aosp_15_r20/external/libvpx/vp9/encoder/
H A Dvp9_rd.h108 double rd_mult_key_qp_fac; member
H A Dvp9_rd.c217 rdc->rd_mult_key_qp_fac = 1.0; in vp9_init_rd_parameters()
258 rdmult = (int)((double)rdmult * def_rd_q_mult * rdc->rd_mult_key_qp_fac); in vp9_compute_rd_mult_based_on_qindex()
/aosp_15_r20/external/libvpx/vpx/
H A Dvpx_encoder.h848 vpx_rational_t rd_mult_key_qp_fac; member
/aosp_15_r20/external/libvpx/
H A Dvpxenc.c325 static const arg_def_t rd_mult_key_qp_fac = ARG_DEF( variable
342 &rd_mult_key_qp_fac,
1073 } else if (arg_match(&arg, &rd_mult_key_qp_fac, argi)) { in parse_stream_params()
1074 config->cfg.rd_mult_key_qp_fac = arg_parse_rational(&arg); in parse_stream_params()
/aosp_15_r20/external/libvpx/vp8/
H A Dvp8_cx_iface.c283 RANGE_CHECK(cfg, rd_mult_key_qp_fac.den, 1, 1000); in validate_config()