1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +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,6 +234,7 @@ void ff_gblur_init(GBlurContext *s)
{ {
s->horiz_slice = horiz_slice_c; s->horiz_slice = horiz_slice_c;
s->postscale_slice = postscale_c; s->postscale_slice = postscale_c;
if (ARCH_X86)
ff_gblur_init_x86(s); ff_gblur_init_x86(s);
} }