Home
last modified time | relevance | path

Searched refs:max_bits (Results 1 – 3 of 3) sorted by relevance

/external/libvpx/vp8/encoder/
Dfirstpass.c204 int max_bits; in frame_max_bits() local
213max_bits = (int)(cpi->av_per_frame_bandwidth * ((double)cpi->oxcf.two_pass_vbrmax_section / 100.0)… in frame_max_bits()
219 …bits = ((cpi->av_per_frame_bandwidth >> 2) < (max_bits >> 2)) ? cpi->av_per_frame_bandwidth >> 2 :… in frame_max_bits()
221 max_bits = (int)(max_bits * buffer_fullness_ratio); in frame_max_bits()
223 if (max_bits < min_max_bits) in frame_max_bits()
224max_bits = min_max_bits; // Lowest value we will set ... which should allow the buffer to re… in frame_max_bits()
231max_bits = (int)(((double)cpi->bits_left / (cpi->total_stats->count - (double)cpi->common.current_… in frame_max_bits()
235 if (max_bits < 0) in frame_max_bits()
236 max_bits = 0; in frame_max_bits()
238 return max_bits; in frame_max_bits()
[all …]
/external/freetype/src/pshinter/
Dpshrec.h101 FT_UInt max_bits; member
Dpshrec.c129 mask->max_bits = 0; in ps_mask_done()
140 FT_UInt old_max = ( mask->max_bits + 7 ) >> 3; in ps_mask_ensure()
149 mask->max_bits = new_max * 8; in ps_mask_ensure()