diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-27 21:33:23 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-10-05 18:58:26 +0200 |
commit | 10bfe8e6bdec0e0478199fe07ccf764f07e0f163 (patch) | |
tree | 2957feab9de0f9fa6b423a8d6626d5dd124809a5 /libavfilter/vf_maskfun.c | |
parent | 53a69d93eba8720f797632ee09ff2844f42f300e (diff) | |
download | ffmpeg-10bfe8e6bdec0e0478199fe07ccf764f07e0f163.tar.gz |
avfilter/vf_maskfun: Use formats list instead of query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_maskfun.c')
-rw-r--r-- | libavfilter/vf_maskfun.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavfilter/vf_maskfun.c b/libavfilter/vf_maskfun.c index 4209205489..b6fa28601e 100644 --- a/libavfilter/vf_maskfun.c +++ b/libavfilter/vf_maskfun.c @@ -60,8 +60,6 @@ static const AVOption maskfun_options[] = { AVFILTER_DEFINE_CLASS(maskfun); -static int query_formats(AVFilterContext *ctx) -{ static const enum AVPixelFormat pix_fmts[] = { AV_PIX_FMT_YUVA444P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P, @@ -83,9 +81,6 @@ static int query_formats(AVFilterContext *ctx) AV_PIX_FMT_NONE }; - return ff_set_common_formats_from_list(ctx, pix_fmts); -} - static int filter_frame(AVFilterLink *inlink, AVFrame *frame) { AVFilterContext *ctx = inlink->dst; @@ -314,7 +309,7 @@ const AVFilter ff_vf_maskfun = { .uninit = uninit, FILTER_INPUTS(maskfun_inputs), FILTER_OUTPUTS(maskfun_outputs), - FILTER_QUERY_FUNC(query_formats), + FILTER_PIXFMTS_ARRAY(pix_fmts), .priv_class = &maskfun_class, .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS, .process_command = process_command, |