Skip to content

Commit

Permalink
libswscale: Test AV_CPU_FLAG_SLOW_GATHER for hscale functions.
Browse files Browse the repository at this point in the history
This is instead of EXTERNAL_AVX2_FAST so that the avx2 hscale functions
are only used where they are faster.
  • Loading branch information
Alan Kelly authored and jamrial committed Dec 21, 2021
1 parent ffbab99 commit eebe406
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libswscale/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ void ff_shuffle_filter_coefficients(SwsContext *c, int *filterPos, int filterSiz
#if ARCH_X86_64
int i, j, k, l;
int cpu_flags = av_get_cpu_flags();
if (EXTERNAL_AVX2_FAST(cpu_flags)){
if (EXTERNAL_AVX2_FAST(cpu_flags) && !(cpu_flags & AV_CPU_FLAG_SLOW_GATHER)) {
if ((c->srcBpc == 8) && (c->dstBpc <= 14)){
if (dstW % 16 == 0){
if (filter != NULL){
Expand Down
2 changes: 1 addition & 1 deletion libswscale/x86/swscale.c
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ switch(c->dstBpc){ \
break; \
}

if (EXTERNAL_AVX2_FAST(cpu_flags)) {
if (EXTERNAL_AVX2_FAST(cpu_flags) && !(cpu_flags & AV_CPU_FLAG_SLOW_GATHER)) {
if ((c->srcBpc == 8) && (c->dstBpc <= 14)) {
if (c->chrDstW % 16 == 0)
ASSIGN_AVX2_SCALE_FUNC(c->hcScale, c->hChrFilterSize);
Expand Down
2 changes: 1 addition & 1 deletion tests/checkasm/sw_scale.c
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ 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) && !(cpu_flags & AV_CPU_FLAG_SLOW_GATHER))
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)) {
Expand Down

0 comments on commit eebe406

Please sign in to comment.