Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
f9b0694c
Commit
f9b0694c
authored
Oct 07, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
motion-test: fix height parameter
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
d58b25aa
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
motion-test.c
libavcodec/motion-test.c
+3
-3
No files found.
libavcodec/motion-test.c
View file @
f9b0694c
...
...
@@ -80,8 +80,8 @@ static void test_motion(const char *name,
for
(
y
=
0
;
y
<
HEIGHT
-
17
;
y
++
)
{
for
(
x
=
0
;
x
<
WIDTH
-
17
;
x
++
)
{
ptr
=
img2
+
y
*
WIDTH
+
x
;
d1
=
test_func
(
NULL
,
img1
,
ptr
,
WIDTH
,
1
);
d2
=
ref_func
(
NULL
,
img1
,
ptr
,
WIDTH
,
1
);
d1
=
test_func
(
NULL
,
img1
,
ptr
,
WIDTH
,
8
);
d2
=
ref_func
(
NULL
,
img1
,
ptr
,
WIDTH
,
8
);
if
(
d1
!=
d2
)
{
printf
(
"error: mmx=%d c=%d
\n
"
,
d1
,
d2
);
}
...
...
@@ -97,7 +97,7 @@ static void test_motion(const char *name,
for
(
y
=
0
;
y
<
HEIGHT
-
17
;
y
++
)
{
for
(
x
=
0
;
x
<
WIDTH
-
17
;
x
++
)
{
ptr
=
img2
+
y
*
WIDTH
+
x
;
d1
+=
test_func
(
NULL
,
img1
,
ptr
,
WIDTH
,
1
);
d1
+=
test_func
(
NULL
,
img1
,
ptr
,
WIDTH
,
8
);
}
}
}
...
...
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