1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

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>
This commit is contained in:
James Almer 2021-02-17 15:45:40 -03:00
parent bea7c51307
commit 3c77584be8

View File

@ -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)