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
47f10df8
Commit
47f10df8
authored
Jun 11, 2013
by
John Koleszar
Committed by
Gerrit Code Review
Jun 11, 2013
Browse files
Merge "Fix mismatch check output" into experimental
parents
0b792cf9
cc0eeda6
Changes
1
Hide whitespace changes
Inline
Side-by-side
vpxenc.c
View file @
47f10df8
...
...
@@ -1517,7 +1517,7 @@ static void find_mismatch(vpx_image_t *img1, vpx_image_t *img2,
uloc
[
0
]
=
uloc
[
1
]
=
uloc
[
2
]
=
uloc
[
3
]
=
-
1
;
for
(
i
=
0
,
match
=
1
;
match
&&
i
<
c_h
;
i
+=
bsizey
)
{
for
(
j
=
0
;
j
<
match
&&
c_w
;
j
+=
bsizex
)
{
for
(
j
=
0
;
match
&&
j
<
c_w
;
j
+=
bsizex
)
{
int
k
,
l
;
int
si
=
mmin
(
i
+
bsizey
,
c_h
-
i
);
int
sj
=
mmin
(
j
+
bsizex
,
c_w
-
j
);
...
...
@@ -1541,7 +1541,7 @@ static void find_mismatch(vpx_image_t *img1, vpx_image_t *img2,
}
vloc
[
0
]
=
vloc
[
1
]
=
vloc
[
2
]
=
vloc
[
3
]
=
-
1
;
for
(
i
=
0
,
match
=
1
;
match
&&
i
<
c_h
;
i
+=
bsizey
)
{
for
(
j
=
0
;
j
<
match
&&
c_w
;
j
+=
bsizex
)
{
for
(
j
=
0
;
match
&&
j
<
c_w
;
j
+=
bsizex
)
{
int
k
,
l
;
int
si
=
mmin
(
i
+
bsizey
,
c_h
-
i
);
int
sj
=
mmin
(
j
+
bsizex
,
c_w
-
j
);
...
...
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