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
ec85153f
Commit
ec85153f
authored
Oct 01, 2015
by
Henrik Gramner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
checkasm: Fix compilation with --disable-avcodec
parent
5d926d54
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
20 deletions
+22
-20
checkasm.c
tests/checkasm/checkasm.c
+22
-20
No files found.
tests/checkasm/checkasm.c
View file @
ec85153f
...
...
@@ -57,26 +57,28 @@ static const struct {
const
char
*
name
;
void
(
*
func
)(
void
);
}
tests
[]
=
{
#if CONFIG_BSWAPDSP
{
"bswapdsp"
,
checkasm_check_bswapdsp
},
#endif
#if CONFIG_FLACDSP
{
"flacdsp"
,
checkasm_check_flacdsp
},
#endif
#if CONFIG_H264PRED
{
"h264pred"
,
checkasm_check_h264pred
},
#endif
#if CONFIG_H264QPEL
{
"h264qpel"
,
checkasm_check_h264qpel
},
#endif
#if CONFIG_JPEG2000_DECODER
{
"jpeg2000dsp"
,
checkasm_check_jpeg2000dsp
},
#endif
#if CONFIG_V210_ENCODER
{
"v210enc"
,
checkasm_check_v210enc
},
#endif
#if CONFIG_VP9_DECODER
{
"vp9dsp"
,
checkasm_check_vp9dsp
},
#if CONFIG_AVCODEC
#if CONFIG_BSWAPDSP
{
"bswapdsp"
,
checkasm_check_bswapdsp
},
#endif
#if CONFIG_FLACDSP
{
"flacdsp"
,
checkasm_check_flacdsp
},
#endif
#if CONFIG_H264PRED
{
"h264pred"
,
checkasm_check_h264pred
},
#endif
#if CONFIG_H264QPEL
{
"h264qpel"
,
checkasm_check_h264qpel
},
#endif
#if CONFIG_JPEG2000_DECODER
{
"jpeg2000dsp"
,
checkasm_check_jpeg2000dsp
},
#endif
#if CONFIG_V210_ENCODER
{
"v210enc"
,
checkasm_check_v210enc
},
#endif
#if CONFIG_VP9_DECODER
{
"vp9dsp"
,
checkasm_check_vp9dsp
},
#endif
#endif
{
NULL
}
};
...
...
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