[FFmpeg-cvslog] checkasm/sw_scale: hscale does not requires cpuflag test.

Alan Kelly git at videolan.org
Thu Aug 18 17:26:47 EEST 2022


ffmpeg | branch: master | Alan Kelly <alankelly-at-google.com at ffmpeg.org> | Fri Jul 15 17:01:31 2022 +0200| [da0a37bab7434ef485146ce8575c7948db1fe3e2] | committer: Anton Khirnov

checkasm/sw_scale: hscale does not requires cpuflag test.

This is done in ff_shuffle_filter_coefficients.

Signed-off-by: Anton Khirnov <anton at khirnov.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=da0a37bab7434ef485146ce8575c7948db1fe3e2
---

 tests/checkasm/sw_scale.c | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/tests/checkasm/sw_scale.c b/tests/checkasm/sw_scale.c
index 9c07dd0421..86d266fb3e 100644
--- a/tests/checkasm/sw_scale.c
+++ b/tests/checkasm/sw_scale.c
@@ -278,8 +278,6 @@ static void check_hscale(void)
                       const uint8_t *src, const int16_t *filter,
                       const int32_t *filterPos, int filterSize);
 
-    int cpu_flags = av_get_cpu_flags();
-
     ctx = sws_alloc_context();
     if (sws_init_context(ctx, NULL, NULL) < 0)
         fail();
@@ -328,8 +326,7 @@ static void check_hscale(void)
                 ctx->dstW = ctx->chrDstW = input_sizes[dstWi];
                 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) && !(cpu_flags & AV_CPU_FLAG_SLOW_GATHER))
-                    ff_shuffle_filter_coefficients(ctx, filterPosAvx, width, filterAvx2, ctx->dstW);
+                ff_shuffle_filter_coefficients(ctx, filterPosAvx, width, filterAvx2, ctx->dstW);
 
                 if (check_func(ctx->hcScale, "hscale_%d_to_%d__fs_%d_dstW_%d", ctx->srcBpc, ctx->dstBpc + 1, width, ctx->dstW)) {
                     memset(dst0, 0, SRC_PIXELS * sizeof(dst0[0]));



More information about the ffmpeg-cvslog mailing list