avfilter/vf_lut: Remove empty init function

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
Andreas Rheinhardt 2021-09-10 22:50:57 +02:00
parent b5be13255f
commit 412d645ba1

View File

@ -607,13 +607,10 @@ AVFILTER_DEFINE_CLASS_EXT(lut, "lut/lutyuv/lutrgb", options);
#if CONFIG_LUT_FILTER
static int lut_init(AVFilterContext *ctx)
{
return 0;
}
#define lut_init NULL
DEFINE_LUT_FILTER(lut, "Compute and apply a lookup table to the RGB/YUV input video.",
lut);
#undef lut_init
#endif
#if CONFIG_LUTYUV_FILTER