HomeSort by relevance Sort by last modified time
    Searched defs: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_
  /external/libvpx/vp8/encoder/
firstpass.c 245 int max_bits; local
248 // If we are running below the optimal level then we need to gradually tighten up on max_bits.
254 max_bits = (int)(cpi->av_per_frame_bandwidth * ((double)cpi->oxcf.two_pass_vbrmax_section / 100.0));
259 // The lower of max_bits / 4 or cpi->av_per_frame_bandwidth / 4.
260 int min_max_bits = ((cpi->av_per_frame_bandwidth >> 2) < (max_bits >> 2)) ? cpi->av_per_frame_bandwidth >> 2 : max_bits >> 2;
262 max_bits = (int)(max_bits * buffer_fullness_ratio);
264 if (max_bits < min_max_bits)
265 max_bits = min_max_bits; // Lowest value we will set ... which should allow the buffer to refil
1366 int max_bits = frame_max_bits(cpi); \/\/ Max for a single frame local
1911 int max_bits = frame_max_bits(cpi); \/\/ Max for a single frame local
2424 int max_bits = frame_max_bits(cpi); local
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 974 const int max_bits = 16; local
991 lstrm.GetBytes( buffer, max_bits );
992 for( i = 0, ht_size = 0; i < max_bits; i++ ) ht_size += buffer[i];
997 lstrm.GetBytes( buffer + max_bits, ht_size );
1001 buffer, buffer2, max_bits, first_table_bits ),
    [all...]

Completed in 138 milliseconds