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
50965e06
Commit
50965e06
authored
May 20, 2015
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: add mathops test
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
eb0c08bc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
0 deletions
+27
-0
Makefile
libavcodec/Makefile
+1
-0
mathops.c
libavcodec/mathops.c
+26
-0
No files found.
libavcodec/Makefile
View file @
50965e06
...
...
@@ -883,6 +883,7 @@ SKIPHEADERS-$(CONFIG_VDA) += vda.h vda_internal.h
SKIPHEADERS-$(CONFIG_VDPAU)
+=
vdpau.h
vdpau_internal.h
TESTPROGS
=
imgconvert
\
mathops
\
options
\
avfft
\
...
...
libavcodec/mathops.c
0 → 100644
View file @
50965e06
#include "mathops.h"
#ifdef TEST
#include <stdlib.h>
int
main
(
void
)
{
unsigned
u
;
for
(
u
=
0
;
u
<
65536
;
u
++
)
{
unsigned
s
=
u
*
u
;
unsigned
root
=
ff_sqrt
(
s
);
unsigned
root_m1
=
ff_sqrt
(
s
-
1
);
if
(
s
&&
root
!=
u
)
{
fprintf
(
stderr
,
"ff_sqrt failed at %u with %u
\n
"
,
s
,
root
);
return
1
;
}
if
(
u
&&
root_m1
!=
u
-
1
)
{
fprintf
(
stderr
,
"ff_sqrt failed at %u with %u
\n
"
,
s
,
root
);
return
1
;
}
}
return
0
;
}
#endif
/* TEST */
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