]> git.sesse.net Git - ffmpeg/blobdiff - libswscale/arm/swscale.c
swscale: arm: fix NEON hscale init
[ffmpeg] / libswscale / arm / swscale.c
index 1ec360fe24ab9256cc504cbe2f0709360b2987f0..7b8fbcbc79f4f83686498cc3e063831a9afb256f 100644 (file)
@@ -34,7 +34,10 @@ av_cold void ff_sws_init_swscale_arm(SwsContext *c)
     int cpu_flags = av_get_cpu_flags();
 
     if (have_neon(cpu_flags)) {
-        if (c->srcBpc == 8 && c->dstBpc <= 14) {
+        if (c->srcBpc == 8 && c->dstBpc <= 14 &&
+            (c->hLumFilterSize % 8) == 0 &&
+            (c->hChrFilterSize % 8) == 0)
+        {
             c->hyScale = c->hcScale = ff_hscale_8_to_15_neon;
         }
         if (c->dstBpc == 8) {