summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlan Kelly <alankelly@google.com>2021-12-16 17:05:48 +0100
committerJames Almer <jamrial@gmail.com>2021-12-16 13:16:04 -0300
commit86663963e6419a127cf52a03758855f4f8f8689f (patch)
tree3a1ddd8b74593816f364f551d59708e3e22eecd6 /tests
parent76a3f961f8e004da3ebc32640baf5c5ea4406a3b (diff)
x86/swscale: fix minor coding style issues
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/checkasm/sw_scale.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/checkasm/sw_scale.c b/tests/checkasm/sw_scale.c
index 011cb46428..f4912e6c2c 100644
--- a/tests/checkasm/sw_scale.c
+++ b/tests/checkasm/sw_scale.c
@@ -217,9 +217,8 @@ static void check_hscale(void)
}
ff_sws_init_scale(ctx);
memcpy(filterAvx2, filter, sizeof(uint16_t) * (SRC_PIXELS * MAX_FILTER_WIDTH + MAX_FILTER_WIDTH));
- if (cpu_flags & AV_CPU_FLAG_AVX2){
+ if (cpu_flags & AV_CPU_FLAG_AVX2)
ff_shuffle_filter_coefficients(ctx, filterPosAvx, width, filterAvx2, SRC_PIXELS);
- }
if (check_func(ctx->hcScale, "hscale_%d_to_%d_width%d", ctx->srcBpc, ctx->dstBpc + 1, width)) {
memset(dst0, 0, SRC_PIXELS * sizeof(dst0[0]));