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.c1630 int64_t total_group_bits; in calculate_total_gf_group_bits() local
1634 total_group_bits = (int64_t)(twopass->kf_group_bits * in calculate_total_gf_group_bits()
1637 total_group_bits = 0; in calculate_total_gf_group_bits()
1641 total_group_bits = (total_group_bits < 0) ? in calculate_total_gf_group_bits()
1642 0 : (total_group_bits > twopass->kf_group_bits) ? in calculate_total_gf_group_bits()
1643 twopass->kf_group_bits : total_group_bits; in calculate_total_gf_group_bits()
1646 if (total_group_bits > (int64_t)max_bits * rc->baseline_gf_interval) in calculate_total_gf_group_bits()
1647 total_group_bits = (int64_t)max_bits * rc->baseline_gf_interval; in calculate_total_gf_group_bits()
1649 return total_group_bits; in calculate_total_gf_group_bits()
1654 int boost, int64_t total_group_bits) { in calculate_boost_bits() argument
[all …]