Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
aom-rav1e
Commits
8d0039c1
Commit
8d0039c1
authored
Oct 13, 2017
by
Yaowu Xu
Browse files
Fix a misuse of macro
Change-Id: Iefae7f84f8196bada91b8c5b10992967c6a66a11
parent
1f0c5fd2
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/encoder/encoder.c
View file @
8d0039c1
...
...
@@ -999,8 +999,8 @@ static void set_tile_info(AV1_COMP *cpi) {
cm
->
tile_width
=
AOMMIN
(
cm
->
tile_width
,
cm
->
mi_cols
);
cm
->
tile_height
=
AOMMIN
(
cm
->
tile_height
,
cm
->
mi_rows
);
assert
(
cm
->
tile_width
>>
MAX_MIB_SIZE
<=
32
);
assert
(
cm
->
tile_height
>>
MAX_MIB_SIZE
<=
32
);
assert
(
cm
->
tile_width
>>
MAX_MIB_SIZE
_LOG2
<=
32
);
assert
(
cm
->
tile_height
>>
MAX_MIB_SIZE
_LOG2
<=
32
);
// Get the number of tiles
cm
->
tile_cols
=
1
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment