diff --git a/libavfilter/vf_sab.c b/libavfilter/vf_sab.c index 1e696fed5f..cf6c3c511e 100644 --- a/libavfilter/vf_sab.c +++ b/libavfilter/vf_sab.c @@ -55,8 +55,6 @@ typedef struct SabContext { unsigned int sws_flags; } SabContext; -static int query_formats(AVFilterContext *ctx) -{ static const enum AVPixelFormat pix_fmts[] = { AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV410P, @@ -65,8 +63,6 @@ static int query_formats(AVFilterContext *ctx) AV_PIX_FMT_YUV411P, AV_PIX_FMT_NONE }; - return ff_set_common_formats_from_list(ctx, pix_fmts); -} #define RADIUS_MIN 0.1 #define RADIUS_MAX 4.0 @@ -326,7 +322,7 @@ const AVFilter ff_vf_sab = { .uninit = uninit, FILTER_INPUTS(sab_inputs), FILTER_OUTPUTS(sab_outputs), - FILTER_QUERY_FUNC(query_formats), + FILTER_PIXFMTS_ARRAY(pix_fmts), .priv_class = &sab_class, .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC, };