mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/x86/vf_v360_init: add missing cases
This commit is contained in:
parent
e4809e12ea
commit
8e1354c95d
|
@ -62,7 +62,9 @@ av_cold void ff_v360_init_x86(V360Context *s, int depth)
|
||||||
s->remap_line = ff_remap3_8bit_line_avx2;
|
s->remap_line = ff_remap3_8bit_line_avx2;
|
||||||
|
|
||||||
if (EXTERNAL_AVX2_FAST(cpu_flags) && (s->interp == BICUBIC ||
|
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;
|
s->remap_line = ff_remap4_8bit_line_avx2;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue