Searched refs:max_log2 (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
H A Dvp9_tile_common.c42 int min_log2 = 0, max_log2 = 0; local
45 while ((sb_cols >> max_log2) >= MIN_TILE_WIDTH_B64)
46 ++max_log2;
47 --max_log2;
48 if (max_log2 < 0)
49 max_log2 = 0;
55 assert(min_log2 <= max_log2);
58 *max_log2_tile_cols = max_log2;
/external/libvpx/libvpx/vp9/common/
H A Dvp9_tile_common.c34 int min_log2 = 0, max_log2 = 0; local
37 while ((sb_cols >> max_log2) >= MIN_TILE_WIDTH_B64)
38 ++max_log2;
39 --max_log2;
40 if (max_log2 < 0)
41 max_log2 = 0;
47 assert(min_log2 <= max_log2);
50 *max_log2_tile_cols = max_log2;

Completed in 219 milliseconds