HomeSort by relevance Sort by last modified time
    Searched refs:max_bits (Results 1 - 3 of 3) sorted by null

  /external/freetype/src/pshinter/
pshrec.h 101 FT_UInt max_bits; member in struct:PS_MaskRec_
pshrec.c 129 mask->max_bits = 0;
140 FT_UInt old_max = ( mask->max_bits + 7 ) >> 3;
149 mask->max_bits = new_max * 8;
  /external/libvpx/vp8/encoder/
firstpass.c 204 int max_bits; local
207 // If we are running below the optimal level then we need to gradually tighten up on max_bits.
213 max_bits = (int)(cpi->av_per_frame_bandwidth * ((double)cpi->oxcf.two_pass_vbrmax_section / 100.0));
218 // The lower of max_bits / 4 or cpi->av_per_frame_bandwidth / 4.
219 int min_max_bits = ((cpi->av_per_frame_bandwidth >> 2) < (max_bits >> 2)) ? cpi->av_per_frame_bandwidth >> 2 : max_bits >> 2;
221 max_bits = (int)(max_bits * buffer_fullness_ratio);
223 if (max_bits < min_max_bits)
224 max_bits = min_max_bits; // Lowest value we will set ... which should allow the buffer to refil
1222 int max_bits = frame_max_bits(cpi); \/\/ Max for a single frame local
1780 int max_bits = frame_max_bits(cpi); \/\/ Max for a single frame local
2205 int max_bits = frame_max_bits(cpi); local
    [all...]

Completed in 172 milliseconds