summaryrefslogtreecommitdiff
path: root/libavfilter/vf_deshake.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-27 23:07:43 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-10-05 18:58:28 +0200
commit19cdebc6acdf6d373472d3ca4660093f49c15ec2 (patch)
treeed814659344de65f448473794dc7b9a6a0f6f92c /libavfilter/vf_deshake.c
parentec19fbdc3a884b1252f1963a0810dd5cb4302439 (diff)
avfilter/vf_deshake: Use formats list instead of query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_deshake.c')
-rw-r--r--libavfilter/vf_deshake.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/libavfilter/vf_deshake.c b/libavfilter/vf_deshake.c
index a2b410c3c8..b1948b5ce1 100644
--- a/libavfilter/vf_deshake.c
+++ b/libavfilter/vf_deshake.c
@@ -372,15 +372,11 @@ static av_cold int init(AVFilterContext *ctx)
return 0;
}
-static int query_formats(AVFilterContext *ctx)
-{
static const enum AVPixelFormat pix_fmts[] = {
AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV422P, AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV410P,
AV_PIX_FMT_YUV411P, AV_PIX_FMT_YUV440P, AV_PIX_FMT_YUVJ420P, AV_PIX_FMT_YUVJ422P,
AV_PIX_FMT_YUVJ444P, AV_PIX_FMT_YUVJ440P, AV_PIX_FMT_NONE
};
- return ff_set_common_formats_from_list(ctx, pix_fmts);
-}
static int config_props(AVFilterLink *link)
{
@@ -554,6 +550,6 @@ const AVFilter ff_vf_deshake = {
.uninit = uninit,
FILTER_INPUTS(deshake_inputs),
FILTER_OUTPUTS(deshake_outputs),
- FILTER_QUERY_FUNC(query_formats),
+ FILTER_PIXFMTS_ARRAY(pix_fmts),
.priv_class = &deshake_class,
};