OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:max_log2
(Results
1 - 2
of
2
) sorted by null
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_tile_common.c
34
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
;
/external/libvpx/libvpx/vp9/common/
vp9_tile_common.c
47
int
max_log2
= 1;
local
48
while ((sb64_cols >>
max_log2
) >= MIN_TILE_WIDTH_B64)
49
++
max_log2
;
50
return
max_log2
- 1;
Completed in 233 milliseconds