Searched refs:get_minq_index (Results 1 – 1 of 1) sorted by relevance
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/ |
D | vp9_ratectrl.c | 58 static int get_minq_index(double maxq, double x3, double x2, double x1) { in get_minq_index() function 81 kf_low_motion_minq[i] = get_minq_index(maxq, 0.000001, -0.0004, 0.15); in vp9_rc_init_minq_luts() 82 kf_high_motion_minq[i] = get_minq_index(maxq, 0.000002, -0.0012, 0.50); in vp9_rc_init_minq_luts() 83 gf_low_motion_minq[i] = get_minq_index(maxq, 0.0000015, -0.0009, 0.32); in vp9_rc_init_minq_luts() 84 gf_high_motion_minq[i] = get_minq_index(maxq, 0.0000021, -0.00125, 0.50); in vp9_rc_init_minq_luts() 85 afq_low_motion_minq[i] = get_minq_index(maxq, 0.0000015, -0.0009, 0.33); in vp9_rc_init_minq_luts() 86 afq_high_motion_minq[i] = get_minq_index(maxq, 0.0000021, -0.00125, 0.55); in vp9_rc_init_minq_luts() 87 inter_minq[i] = get_minq_index(maxq, 0.00000271, -0.00113, 0.75); in vp9_rc_init_minq_luts()
|