Home
last modified time | relevance | path

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

/external/libaom/libaom/av1/encoder/
Dpass2_strategy.c705 int64_t total_group_bits; in calculate_total_gf_group_bits() local
709 total_group_bits = (int64_t)(twopass->kf_group_bits * in calculate_total_gf_group_bits()
712 total_group_bits = 0; in calculate_total_gf_group_bits()
716 total_group_bits = (total_group_bits < 0) in calculate_total_gf_group_bits()
718 : (total_group_bits > twopass->kf_group_bits) in calculate_total_gf_group_bits()
720 : total_group_bits; in calculate_total_gf_group_bits()
723 if (total_group_bits > (int64_t)max_bits * rc->baseline_gf_interval) in calculate_total_gf_group_bits()
724 total_group_bits = (int64_t)max_bits * rc->baseline_gf_interval; in calculate_total_gf_group_bits()
726 return total_group_bits; in calculate_total_gf_group_bits()
731 int64_t total_group_bits) { in calculate_boost_bits() argument
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c2081 int64_t total_group_bits; in calculate_total_gf_group_bits() local
2096 total_group_bits = (int64_t)(twopass->kf_group_bits * in calculate_total_gf_group_bits()
2099 total_group_bits += in calculate_total_gf_group_bits()
2103 total_group_bits = 0; in calculate_total_gf_group_bits()
2107 total_group_bits = (total_group_bits < 0) in calculate_total_gf_group_bits()
2109 : (total_group_bits > twopass->kf_group_bits) in calculate_total_gf_group_bits()
2111 : total_group_bits; in calculate_total_gf_group_bits()
2114 if (total_group_bits > (int64_t)max_bits * gop_frames) in calculate_total_gf_group_bits()
2115 total_group_bits = (int64_t)max_bits * gop_frames; in calculate_total_gf_group_bits()
2117 return total_group_bits; in calculate_total_gf_group_bits()
[all …]