avfilter/vf_gblur: add missing arch check

Removed by mistake in 2b4da1cb8c where it
should have been replaced instead.

Signed-off-by: James Almer <jamrial@gmail.com>
pull/371/head
James Almer 4 years ago
parent bea7c51307
commit 3c77584be8
  1. 3
      libavfilter/vf_gblur.c

@ -234,7 +234,8 @@ void ff_gblur_init(GBlurContext *s)
{
s->horiz_slice = horiz_slice_c;
s->postscale_slice = postscale_c;
ff_gblur_init_x86(s);
if (ARCH_X86)
ff_gblur_init_x86(s);
}
static int config_input(AVFilterLink *inlink)

Loading…
Cancel
Save