x86/swscale: fix minor coding style issues

Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
Alan Kelly 2021-12-16 17:05:48 +01:00 committed by James Almer
parent 76a3f961f8
commit 86663963e6
2 changed files with 8 additions and 9 deletions

View File

@ -578,13 +578,13 @@ switch(c->dstBpc){ \
break; \
}
if (EXTERNAL_AVX2_FAST(cpu_flags)){
if ((c->srcBpc == 8) && (c->dstBpc <= 14)){
if(c->chrDstW % 16 == 0)
ASSIGN_AVX2_SCALE_FUNC(c->hcScale, c->hChrFilterSize);
if(c->dstW % 16 == 0)
ASSIGN_AVX2_SCALE_FUNC(c->hyScale, c->hLumFilterSize);
}
if (EXTERNAL_AVX2_FAST(cpu_flags)) {
if ((c->srcBpc == 8) && (c->dstBpc <= 14)) {
if (c->chrDstW % 16 == 0)
ASSIGN_AVX2_SCALE_FUNC(c->hcScale, c->hChrFilterSize);
if (c->dstW % 16 == 0)
ASSIGN_AVX2_SCALE_FUNC(c->hyScale, c->hLumFilterSize);
}
}
if (EXTERNAL_AVX2_FAST(cpu_flags)) {

View File

@ -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]));