Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c1814 int allocation_chunks; in define_gf_group() local
1850 allocation_chunks = (i * 100) + Boost; in define_gf_group()
1855 allocation_chunks /= 2; in define_gf_group()
1862 (int)((double)Boost * (group_bits / (double)allocation_chunks)); in define_gf_group()
2000 int allocation_chunks; in define_gf_group() local
2021 allocation_chunks = ((cpi->baseline_gf_interval + 1) * 100) + Boost; in define_gf_group()
2035 allocation_chunks = (cpi->baseline_gf_interval * 100) + (Boost - 100); in define_gf_group()
2041 allocation_chunks /= 2; in define_gf_group()
2048 (cpi->twopass.gf_group_bits / (double)allocation_chunks)); in define_gf_group()
2064 (int)((double)Boost * (alt_gf_grp_bits / (double)allocation_chunks)); in define_gf_group()
[all …]
Dratectrl.c972 int allocation_chunks = (frames_in_section * 100) + (Boost - 100); in calc_pframe_target_size() local
980 allocation_chunks /= 2; in calc_pframe_target_size()
984 if ((bits_in_section >> 7) > allocation_chunks) { in calc_pframe_target_size()
986 Boost * (bits_in_section / allocation_chunks); in calc_pframe_target_size()
989 (Boost * bits_in_section) / allocation_chunks; in calc_pframe_target_size()
/external/libaom/libaom/av1/encoder/
Dpass2_strategy.c732 int allocation_chunks; in calculate_boost_bits() local
739 allocation_chunks = (frame_count * 100) + boost; in calculate_boost_bits()
745 allocation_chunks /= divisor; in calculate_boost_bits()
749 return AOMMAX((int)(((int64_t)boost * total_group_bits) / allocation_chunks), in calculate_boost_bits()
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c2123 int allocation_chunks; in calculate_boost_bits() local
2128 allocation_chunks = (frame_count * NORMAL_BOOST) + boost; in calculate_boost_bits()
2134 allocation_chunks /= divisor; in calculate_boost_bits()
2138 return VPXMAX((int)(((int64_t)boost * total_group_bits) / allocation_chunks), in calculate_boost_bits()