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
db328a6b
Commit
db328a6b
authored
Jun 21, 2016
by
Debargha Mukherjee
Committed by
Gerrit Code Review
Jun 21, 2016
Browse files
Merge "Fix false uninitialized warnings (GCC 5+)." into nextgenv2
parents
02b8212b
7de2ba3e
Changes
1
Hide whitespace changes
Inline
Side-by-side
test/encode_test_driver.cc
View file @
db328a6b
...
...
@@ -237,11 +237,11 @@ static bool compare_img(const vpx_image_t *img1,
void
EncoderTest
::
MismatchHook
(
const
vpx_image_t
*
img_enc
,
const
vpx_image_t
*
img_dec
)
{
int
mismatch_row
;
int
mismatch_col
;
int
mismatch_plane
;
int
mismatch_pix_enc
;
int
mismatch_pix_dec
;
int
mismatch_row
=
0
;
int
mismatch_col
=
0
;
int
mismatch_plane
=
0
;
int
mismatch_pix_enc
=
0
;
int
mismatch_pix_dec
=
0
;
ASSERT_FALSE
(
compare_img
(
img_enc
,
img_dec
,
&
mismatch_row
,
&
mismatch_col
,
...
...
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