avfilter/x86/vf_v360_init: add missing cases

This commit is contained in:
Paul B Mahol 2020-04-02 12:03:11 +02:00
parent e4809e12ea
commit 8e1354c95d
1 changed files with 3 additions and 1 deletions

View File

@ -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
}