Commit e00db9f7 authored by Martin Storsjö's avatar 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: 's avatarMartin Storsjö <martin@martin.st>
parent 1731c353
......@@ -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))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment