Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
0cef06df
Commit
0cef06df
authored
Jul 31, 2015
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
checkasm: add HEVC MC tests
parent
a853388d
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
0 deletions
+5
-0
Makefile
tests/checkasm/Makefile
+1
-0
checkasm.c
tests/checkasm/checkasm.c
+3
-0
checkasm.h
tests/checkasm/checkasm.h
+1
-0
hevc_mc.c
tests/checkasm/hevc_mc.c
+0
-0
No files found.
tests/checkasm/Makefile
View file @
0cef06df
...
...
@@ -2,6 +2,7 @@
AVCODECOBJS-$(CONFIG_BSWAPDSP)
+=
bswapdsp.o
AVCODECOBJS-$(CONFIG_H264PRED)
+=
h264pred.o
AVCODECOBJS-$(CONFIG_H264QPEL)
+=
h264qpel.o
AVCODECOBJS-$(CONFIG_HEVC_DECODER)
+=
hevc_mc.o
AVCODECOBJS-$(CONFIG_V210_ENCODER)
+=
v210enc.o
CHECKASMOBJS-$(CONFIG_AVCODEC)
+=
$(AVCODECOBJS-yes)
...
...
tests/checkasm/checkasm.c
View file @
0cef06df
...
...
@@ -66,6 +66,9 @@ static const struct {
#if CONFIG_H264QPEL
{
"h264qpel"
,
checkasm_check_h264qpel
},
#endif
#if CONFIG_HEVC_DECODER
{
"hevc_mc"
,
checkasm_check_hevc_mc
},
#endif
#if CONFIG_V210_ENCODER
{
"v210enc"
,
checkasm_check_v210enc
},
#endif
...
...
tests/checkasm/checkasm.h
View file @
0cef06df
...
...
@@ -32,6 +32,7 @@
void
checkasm_check_bswapdsp
(
void
);
void
checkasm_check_h264pred
(
void
);
void
checkasm_check_h264qpel
(
void
);
void
checkasm_check_hevc_mc
(
void
);
void
checkasm_check_v210enc
(
void
);
void
*
checkasm_check_func
(
void
*
func
,
const
char
*
name
,
...)
av_printf_format
(
2
,
3
);
...
...
tests/checkasm/hevc_mc.c
0 → 100644
View file @
0cef06df
This diff is collapsed.
Click to expand it.
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