Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
VideoLAN
dav1d
Commits
9dcdf20c
Commit
9dcdf20c
authored
Oct 19, 2018
by
Martin Storsjö
Committed by
Janne Grunau
Oct 19, 2018
Browse files
checkasm: Fix building with some bitdepths disabled
parent
38da7af6
Pipeline
#1125
passed with stage
in 2 minutes and 1 second
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
tests/checkasm/checkasm.c
View file @
9dcdf20c
...
...
@@ -61,16 +61,20 @@ static const struct {
const
char
*
name
;
void
(
*
func
)(
void
);
}
tests
[]
=
{
#if CONFIG_8BPC
{
"ipred_8bpc"
,
checkasm_check_ipred_8bpc
},
{
"ipred_10bpc"
,
checkasm_check_ipred_10bpc
},
{
"itx_8bpc"
,
checkasm_check_itx_8bpc
},
{
"itx_10bpc"
,
checkasm_check_itx_10bpc
},
{
"loopfilter_8bpc"
,
checkasm_check_loopfilter_8bpc
},
{
"loopfilter_10bpc"
,
checkasm_check_loopfilter_10bpc
},
{
"looprestoration_8bpc"
,
checkasm_check_looprestoration_8bpc
},
{
"looprestoration_10bpc"
,
checkasm_check_looprestoration_10bpc
},
{
"mc_8bpc"
,
checkasm_check_mc_8bpc
},
#endif
#if CONFIG_10BPC
{
"ipred_10bpc"
,
checkasm_check_ipred_10bpc
},
{
"itx_10bpc"
,
checkasm_check_itx_10bpc
},
{
"loopfilter_10bpc"
,
checkasm_check_loopfilter_10bpc
},
{
"looprestoration_10bpc"
,
checkasm_check_looprestoration_10bpc
},
{
"mc_10bpc"
,
checkasm_check_mc_10bpc
},
#endif
{
0
}
};
...
...
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