Home
last modified time | relevance | path

Searched refs:active_cq_level (Results 1 – 2 of 2) sorted by relevance

/external/libvpx/libvpx/vp9/encoder/
Dvp9_ratectrl.c1099 int active_cq_level = oxcf->cq_level; in get_active_cq_level_one_pass() local
1103 active_cq_level = (int)(active_cq_level * x / cq_adjust_threshold); in get_active_cq_level_one_pass()
1106 return active_cq_level; in get_active_cq_level_one_pass()
1115 int active_cq_level = oxcf->cq_level; in get_active_cq_level_two_pass() local
1118 active_cq_level -= in get_active_cq_level_two_pass()
1120 active_cq_level = VPXMAX(active_cq_level, 0); in get_active_cq_level_two_pass()
1125 active_cq_level = (int)(active_cq_level * x / cq_adjust_threshold); in get_active_cq_level_two_pass()
1129 return active_cq_level; in get_active_cq_level_two_pass()
/external/libaom/libaom/av1/encoder/
Dratectrl.c871 int active_cq_level = oxcf->cq_level; in get_active_cq_level() local
886 active_cq_level = AOMMAX( in get_active_cq_level()
887 active_cq_level - ((superres_denom - SCALE_NUMERATOR) * mult), 0); in get_active_cq_level()
893 active_cq_level = (int)(active_cq_level * x / cq_adjust_threshold); in get_active_cq_level()
896 return active_cq_level; in get_active_cq_level()