Home
last modified time | relevance | path

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

/external/libvpx/libvpx/vp9/common/
Dvp9_tile_common.c39 static int get_min_log2_tile_cols(const int sb64_cols) { in get_min_log2_tile_cols() argument
41 while ((MAX_TILE_WIDTH_B64 << min_log2) < sb64_cols) in get_min_log2_tile_cols()
46 static int get_max_log2_tile_cols(const int sb64_cols) { in get_max_log2_tile_cols() argument
48 while ((sb64_cols >> max_log2) >= MIN_TILE_WIDTH_B64) in get_max_log2_tile_cols()
55 const int sb64_cols = mi_cols_aligned_to_sb(mi_cols) >> MI_BLOCK_SIZE_LOG2; in vp9_get_tile_n_bits() local
56 *min_log2_tile_cols = get_min_log2_tile_cols(sb64_cols); in vp9_get_tile_n_bits()
57 *max_log2_tile_cols = get_max_log2_tile_cols(sb64_cols); in vp9_get_tile_n_bits()