Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c2078 int64_t total_group_bits; in calculate_total_gf_group_bits() local
2082 total_group_bits = (int64_t)(twopass->kf_group_bits * in calculate_total_gf_group_bits()
2085 total_group_bits = 0; in calculate_total_gf_group_bits()
2089 total_group_bits = (total_group_bits < 0) in calculate_total_gf_group_bits()
2091 : (total_group_bits > twopass->kf_group_bits) in calculate_total_gf_group_bits()
2093 : total_group_bits; in calculate_total_gf_group_bits()
2096 if (total_group_bits > (int64_t)max_bits * rc->baseline_gf_interval) in calculate_total_gf_group_bits()
2097 total_group_bits = (int64_t)max_bits * rc->baseline_gf_interval; in calculate_total_gf_group_bits()
2099 return total_group_bits; in calculate_total_gf_group_bits()
2104 int64_t total_group_bits) { in calculate_boost_bits() argument
[all …]