[FFmpeg-cvslog] avfilter/x86/vf_v360_init: add missing cases

Paul B Mahol git at videolan.org
Thu Apr 2 13:36:13 EEST 2020


ffmpeg | branch: master | Paul B Mahol <onemda at gmail.com> | Thu Apr  2 12:03:11 2020 +0200| [8e1354c95d05a64bf5b99317387fca0ebdb4cd41] | committer: Paul B Mahol

avfilter/x86/vf_v360_init: add missing cases

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

 libavfilter/x86/vf_v360_init.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/libavfilter/x86/vf_v360_init.c b/libavfilter/x86/vf_v360_init.c
index 5b1decd777..7d001a6948 100644
--- a/libavfilter/x86/vf_v360_init.c
+++ b/libavfilter/x86/vf_v360_init.c
@@ -62,7 +62,9 @@ av_cold void ff_v360_init_x86(V360Context *s, int depth)
         s->remap_line = ff_remap3_8bit_line_avx2;
 
     if (EXTERNAL_AVX2_FAST(cpu_flags) && (s->interp == BICUBIC ||
-                                          s->interp == LANCZOS) && depth <= 8)
+                                          s->interp == LANCZOS ||
+                                          s->interp == SPLINE16 ||
+                                          s->interp == GAUSSIAN) && depth <= 8)
         s->remap_line = ff_remap4_8bit_line_avx2;
 #endif
 }



More information about the ffmpeg-cvslog mailing list