diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-09-27 17:43:26 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-10-05 18:58:26 +0200 |
commit | c7eaf45d61a9d9110d66d18476d91bdcc98b9da1 (patch) | |
tree | 50d55206ce5d2e6e6b14a81dff02650cdbf11154 /libavfilter | |
parent | 828a427c112e005dd4f9a589316b0d8ccaae2ea5 (diff) | |
download | ffmpeg-c7eaf45d61a9d9110d66d18476d91bdcc98b9da1.tar.gz |
avfilter/vf_scroll: Use formats list instead of query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_scroll.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libavfilter/vf_scroll.c b/libavfilter/vf_scroll.c index 8b8e8580f7..ddc0d26cd6 100644 --- a/libavfilter/vf_scroll.c +++ b/libavfilter/vf_scroll.c @@ -42,8 +42,6 @@ typedef struct ScrollContext { int planeheight[4]; } ScrollContext; -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, @@ -66,9 +64,6 @@ static int query_formats(AVFilterContext *ctx) AV_PIX_FMT_NONE }; - return ff_set_common_formats_from_list(ctx, pix_fmts); -} - typedef struct ThreadData { AVFrame *in, *out; } ThreadData; @@ -213,7 +208,7 @@ const AVFilter ff_vf_scroll = { .priv_class = &scroll_class, FILTER_INPUTS(scroll_inputs), FILTER_OUTPUTS(scroll_outputs), - FILTER_QUERY_FUNC(query_formats), + FILTER_PIXFMTS_ARRAY(pix_fmts), .flags = AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC | AVFILTER_FLAG_SLICE_THREADS, .process_command = ff_filter_process_command, }; |