Browse Source

avfilter/x86/vf_v360_init: add missing cases

tags/n4.3
Paul B Mahol 5 years ago
parent
commit
8e1354c95d
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavfilter/x86/vf_v360_init.c

+ 3
- 1
libavfilter/x86/vf_v360_init.c 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
}

Loading…
Cancel
Save