mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-19 05:55:07 +00:00
lavfi/select: use exported dsputil_init function.
This is the deprecated version of the function but it is exported, so it should fix the shared FATE box.
This commit is contained in:
parent
1b27b8bf6c
commit
44be67595d
@ -177,7 +177,7 @@ static int config_input(AVFilterLink *inlink)
|
||||
select->avctx = avcodec_alloc_context3(NULL);
|
||||
if (!select->avctx)
|
||||
return AVERROR(ENOMEM);
|
||||
ff_dsputil_init(&select->c, select->avctx);
|
||||
dsputil_init(&select->c, select->avctx);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user