Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp8/encoder/
Dfirstpass.c1886 double max_boost; in define_gf_group() local
1895max_boost = ((double)((cpi->buffer_level - df_buffer_level) * 2 / 3) * 16.0) / DOUBLE_DIVIDE_CHECK… in define_gf_group()
1897 max_boost = 0.0; in define_gf_group()
1901max_boost = ((double)(cpi->buffer_level * 2 / 3) * 16.0) / DOUBLE_DIVIDE_CHECK((double)cpi->av_per… in define_gf_group()
1905 max_boost = 0.0; in define_gf_group()
1908 if (boost_score > max_boost) in define_gf_group()
1909 boost_score = max_boost; in define_gf_group()
3034 double max_boost; in find_next_key_frame() local
3042max_boost = ((double)((cpi->buffer_level - df_buffer_level) * 2 / 3) * 16.0) / DOUBLE_DIVIDE_CHECK… in find_next_key_frame()
3044 max_boost = 0.0; in find_next_key_frame()
[all …]
/external/libvpx/libvpx/vp9/encoder/
Dvp9_firstpass.c1485 double max_boost) { in calc_frame_boost() argument
1511 return VPXMIN(frame_boost, max_boost * boost_q_correction); in calc_frame_boost()