Skip to content
GitLab
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
dc90bf07
Commit
dc90bf07
authored
Oct 21, 2016
by
Jingning Han
Committed by
Gerrit Code Review
Oct 21, 2016
Browse files
Merge "Fix unused variable error in intrapred.c" into nextgenv2
parents
823411ea
646e52a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
aom_dsp/intrapred.c
View file @
dc90bf07
...
...
@@ -338,6 +338,7 @@ void aom_ve_predictor_2x2_c(uint8_t *dst, ptrdiff_t stride,
const
int
I
=
above
[
0
];
const
int
J
=
above
[
1
];
const
int
K
=
above
[
2
];
(
void
)
left
;
dst
[
0
]
=
AVG3
(
H
,
I
,
J
);
dst
[
1
]
=
AVG3
(
I
,
J
,
K
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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