Commit 8e1354c9 authored by Paul B Mahol's avatar Paul B Mahol

avfilter/x86/vf_v360_init: add missing cases

parent e4809e12
......@@ -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
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment