Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
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
bcfb0e15
Commit
bcfb0e15
authored
May 11, 2017
by
Debargha Mukherjee
Browse files
Build fix with interintra alone
Change-Id: I9d771edccd90c72ada72942e11cf3fbabb8146a9
parent
9bab28b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
av1/decoder/decodeframe.c
View file @
bcfb0e15
...
...
@@ -4791,10 +4791,14 @@ static void debug_check_frame_counts(const AV1_COMMON *const cm) {
assert
(
!
memcmp
(
cm
->
counts
.
inter_compound_mode
,
zero_counts
.
inter_compound_mode
,
sizeof
(
cm
->
counts
.
inter_compound_mode
)));
#if CONFIG_INTERINTRA
assert
(
!
memcmp
(
cm
->
counts
.
interintra
,
zero_counts
.
interintra
,
sizeof
(
cm
->
counts
.
interintra
)));
#if CONFIG_WEDGE
assert
(
!
memcmp
(
cm
->
counts
.
wedge_interintra
,
zero_counts
.
wedge_interintra
,
sizeof
(
cm
->
counts
.
wedge_interintra
)));
#endif // CONFIG_WEDGE
#endif // CONFIG_INTERINTRA
assert
(
!
memcmp
(
cm
->
counts
.
compound_interinter
,
zero_counts
.
compound_interinter
,
sizeof
(
cm
->
counts
.
compound_interinter
)));
...
...
Write
Preview
Supports
Markdown
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