mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
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;
|
||||
|
||||
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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user