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

  /external/libvpx/libvpx/vp9/common/
vp9_tile_common.c 39 static int get_min_log2_tile_cols(const int sb64_cols) {
41 while ((MAX_TILE_WIDTH_B64 << min_log2) < sb64_cols) ++min_log2;
45 static int get_max_log2_tile_cols(const int sb64_cols) {
47 while ((sb64_cols >> max_log2) >= MIN_TILE_WIDTH_B64) ++max_log2;
53 const int sb64_cols = mi_cols_aligned_to_sb(mi_cols) >> MI_BLOCK_SIZE_LOG2; local
54 *min_log2_tile_cols = get_min_log2_tile_cols(sb64_cols);
55 *max_log2_tile_cols = get_max_log2_tile_cols(sb64_cols);
  /external/v4l2_codec2/vda/
vp9_uncompressed_header_parser.cc 600 int GetMinLog2TileCols(int sb64_cols) {
603 while ((kMaxTileWidthB64 << min_log2) < sb64_cols)
610 int GetMaxLog2TileCols(int sb64_cols) {
613 while ((sb64_cols >> max_log2) >= kMinTileWidthB64)
876 int sb64_cols = (fhdr->frame_width + 63) / 64; local
878 int min_log2_tile_cols = GetMinLog2TileCols(sb64_cols);
879 int max_log2_tile_cols = GetMaxLog2TileCols(sb64_cols);

Completed in 151 milliseconds