diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-27 21:35:25 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-10-05 18:58:27 +0200 |
commit | 76effaa93832e511d466736b57b222d7727f7f75 (patch) | |
tree | e91671d192b2157d490cfd8999d43c443db40154 | |
parent | 4418f6fadcc932a5731f7c98746949fa90b4d0f8 (diff) | |
download | ffmpeg-76effaa93832e511d466736b57b222d7727f7f75.tar.gz |
avfilter/vf_maskedminmax: Use formats list instead of query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r-- | libavfilter/vf_maskedminmax.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/libavfilter/vf_maskedminmax.c b/libavfilter/vf_maskedminmax.c index 9f4846b08b..3882a3cc65 100644 --- a/libavfilter/vf_maskedminmax.c +++ b/libavfilter/vf_maskedminmax.c @@ -63,8 +63,6 @@ static av_cold int maskedmin_init(AVFilterContext *ctx) return 0; } -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, @@ -87,9 +85,6 @@ static int query_formats(AVFilterContext *ctx) AV_PIX_FMT_NONE }; - return ff_set_common_formats_from_list(ctx, pix_fmts); -} - static void maskedmin8(const uint8_t *src, uint8_t *dst, const uint8_t *f1, const uint8_t *f2, int w) { for (int x = 0; x < w; x++) @@ -330,7 +325,7 @@ const AVFilter ff_vf_maskedmin = { .activate = activate, FILTER_INPUTS(maskedminmax_inputs), FILTER_OUTPUTS(maskedminmax_outputs), - FILTER_QUERY_FUNC(query_formats), + FILTER_PIXFMTS_ARRAY(pix_fmts), .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS, .process_command = ff_filter_process_command, }; @@ -344,7 +339,7 @@ const AVFilter ff_vf_maskedmax = { .activate = activate, FILTER_INPUTS(maskedminmax_inputs), FILTER_OUTPUTS(maskedminmax_outputs), - FILTER_QUERY_FUNC(query_formats), + FILTER_PIXFMTS_ARRAY(pix_fmts), .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS, .process_command = ff_filter_process_command, }; |