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:
parent
bea7c51307
commit
3c77584be8
@ -234,7 +234,8 @@ 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;
|
||||||
ff_gblur_init_x86(s);
|
if (ARCH_X86)
|
||||||
|
ff_gblur_init_x86(s);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int config_input(AVFilterLink *inlink)
|
static int config_input(AVFilterLink *inlink)
|
||||||
|
Loading…
Reference in New Issue
Block a user