Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2017-10-29 00:18:41 +0300
committerJames Almer <jamrial@gmail.com>2017-10-29 00:18:41 +0300
commitf568d9d0baffb4c3c82a806a6aade464a92052aa (patch)
tree9fc9118bc3d30239bb043266e9bb99f3e31dd879 /tests/checkasm
parent495d3b2cc3fa0598f54d9c50ab4aa9dcea6134ce (diff)
parente00db9f78bb475ed5103364f61892f4e75ef89ba (diff)
Merge commit 'e00db9f78bb475ed5103364f61892f4e75ef89ba'
* commit 'e00db9f78bb475ed5103364f61892f4e75ef89ba': checkasm: hevc: Add a hevc_ prefix to the add_residual functions Merged-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests/checkasm')
-rw-r--r--tests/checkasm/hevc_add_res.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/checkasm/hevc_add_res.c b/tests/checkasm/hevc_add_res.c
index 185656ae8c..e92c6b427b 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, sizeof(int16_t) * 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))