Home
last modified time | relevance | path

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

/aosp_15_r20/external/libvpx/vp8/encoder/
H A Dfirstpass.c1777 int allocation_chunks; in define_gf_group() local
1813 allocation_chunks = (i * 100) + Boost; in define_gf_group()
1818 allocation_chunks /= 2; in define_gf_group()
1825 (int)((double)Boost * (group_bits / (double)allocation_chunks)); in define_gf_group()
1962 int allocation_chunks; in define_gf_group() local
1983 allocation_chunks = ((cpi->baseline_gf_interval + 1) * 100) + Boost; in define_gf_group()
1997 allocation_chunks = (cpi->baseline_gf_interval * 100) + (Boost - 100); in define_gf_group()
2003 allocation_chunks /= 2; in define_gf_group()
2011 (cpi->twopass.gf_group_bits / (double)allocation_chunks)); in define_gf_group()
2027 (int)((double)Boost * (alt_gf_grp_bits / (double)allocation_chunks)); in define_gf_group()
[all …]
H A Dratectrl.c987 int allocation_chunks = (frames_in_section * 100) + (Boost - 100); in calc_pframe_target_size() local
995 allocation_chunks /= 2; in calc_pframe_target_size()
999 if ((bits_in_section >> 7) > allocation_chunks) { in calc_pframe_target_size()
1001 Boost * (bits_in_section / allocation_chunks); in calc_pframe_target_size()
1004 (Boost * bits_in_section) / allocation_chunks; in calc_pframe_target_size()
/aosp_15_r20/external/libvpx/vp9/encoder/
H A Dvp9_firstpass.c2149 int allocation_chunks; in calculate_boost_bits() local
2154 allocation_chunks = (frame_count * NORMAL_BOOST) + boost; in calculate_boost_bits()
2160 allocation_chunks /= divisor; in calculate_boost_bits()
2164 return VPXMAX((int)(((int64_t)boost * total_group_bits) / allocation_chunks), in calculate_boost_bits()
/aosp_15_r20/external/libaom/av1/encoder/
H A Dpass2_strategy.c823 int allocation_chunks; in calculate_boost_bits() local
830 allocation_chunks = (frame_count * 100) + boost; in calculate_boost_bits()
836 allocation_chunks /= divisor; in calculate_boost_bits()
840 return AOMMAX((int)(((int64_t)boost * total_group_bits) / allocation_chunks), in calculate_boost_bits()