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
646e52a8
Commit
646e52a8
authored
Oct 21, 2016
by
Angie Chiang
Browse files
Fix unused variable error in intrapred.c
Change-Id: Icda975cd9b264c1752c3057bce8031791f91c08a
parent
c2c5ec21
Changes
1
Hide whitespace changes
Inline
Side-by-side
aom_dsp/intrapred.c
View file @
646e52a8
...
...
@@ -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