[FFmpeg-cvslog] checkasm: hevc: Add a hevc_ prefix to the add_residual functions

Martin Storsjö git at videolan.org
Sun Oct 29 00:25:05 EEST 2017


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Wed Apr 19 10:37:51 2017 +0300| [e00db9f78bb475ed5103364f61892f4e75ef89ba] | committer: Martin Storsjö

checkasm: hevc: Add a hevc_ prefix to the add_residual functions

This makes it easier to group them with the rest when running e.g.
--bench=hevc.

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=e00db9f78bb475ed5103364f61892f4e75ef89ba
---

 tests/checkasm/hevc_add_res.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/checkasm/hevc_add_res.c b/tests/checkasm/hevc_add_res.c
index 2cd97eaf36..c9ed86b5cc 100644
--- 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))



More information about the ffmpeg-cvslog mailing list