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.c522 int64_t total_group_bits; in calculate_total_gf_group_bits() local
526 total_group_bits = (int64_t)(twopass->kf_group_bits * in calculate_total_gf_group_bits()
529 total_group_bits = 0; in calculate_total_gf_group_bits()
533 total_group_bits = (total_group_bits < 0) in calculate_total_gf_group_bits()
535 : (total_group_bits > twopass->kf_group_bits) in calculate_total_gf_group_bits()
537 : total_group_bits; in calculate_total_gf_group_bits()
540 if (total_group_bits > (int64_t)max_bits * rc->baseline_gf_interval) in calculate_total_gf_group_bits()
541 total_group_bits = (int64_t)max_bits * rc->baseline_gf_interval; in calculate_total_gf_group_bits()
543 return total_group_bits; in calculate_total_gf_group_bits()
548 int64_t total_group_bits) { in calculate_boost_bits() argument
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c2056 int64_t total_group_bits; in calculate_total_gf_group_bits() local
2060 total_group_bits = (int64_t)(twopass->kf_group_bits * in calculate_total_gf_group_bits()
2063 total_group_bits = 0; in calculate_total_gf_group_bits()
2067 total_group_bits = (total_group_bits < 0) in calculate_total_gf_group_bits()
2069 : (total_group_bits > twopass->kf_group_bits) in calculate_total_gf_group_bits()
2071 : total_group_bits; in calculate_total_gf_group_bits()
2074 if (total_group_bits > (int64_t)max_bits * rc->baseline_gf_interval) in calculate_total_gf_group_bits()
2075 total_group_bits = (int64_t)max_bits * rc->baseline_gf_interval; in calculate_total_gf_group_bits()
2077 return total_group_bits; in calculate_total_gf_group_bits()
2082 int64_t total_group_bits) { in calculate_boost_bits() argument
[all …]