projects
/
libav.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1731c35
)
checkasm: hevc: Add a hevc_ prefix to the add_residual functions
author
Martin Storsjö
<martin@martin.st>
Wed, 19 Apr 2017 07:37:51 +0000
(10:37 +0300)
committer
Martin Storsjö
<martin@martin.st>
Fri, 21 Apr 2017 10:32:44 +0000
(13:32 +0300)
This makes it easier to group them with the rest when running e.g.
--bench=hevc.
Signed-off-by: Martin Storsjö <martin@martin.st>
tests/checkasm/hevc_add_res.c
patch
|
blob
|
blame
|
history
diff --git
a/tests/checkasm/hevc_add_res.c
b/tests/checkasm/hevc_add_res.c
index
2cd97ea
..
c9ed86b
100644
(file)
--- a/
tests/checkasm/hevc_add_res.c
+++ b/
tests/checkasm/hevc_add_res.c
@@
-61,7
+61,7
@@
static void check_add_res(HEVCDSPContext h, int bit_depth)
memcpy(res1, res0, sizeof(*res0) * size);
memcpy(dst1, dst0, size);
- if (check_func(h.add_residual[i - 2], "add_res_%dx%d_%d", block_size, block_size, bit_depth)) {
+ if (check_func(h.add_residual[i - 2], "
hevc_
add_res_%dx%d_%d", block_size, block_size, bit_depth)) {
call_ref(dst0, res0, stride);
call_new(dst1, res1, stride);
if (memcmp(dst0, dst1, size))