Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-27 18:38:13 +0300
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-10-05 19:58:25 +0300
commitfb1a3d05a9343ef5408818b70a13d3309cae5fe2 (patch)
treea40cb230eab6d3e64a4a37d644a08e0a420999c8 /libavfilter/vf_spp.c
parentafa54580d2064ab7ab6c07a153ab2cd6a95ca92a (diff)
avfilter/vf_spp: Use formats list instead of query function
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_spp.c')
-rw-r--r--libavfilter/vf_spp.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/libavfilter/vf_spp.c b/libavfilter/vf_spp.c
index 32a3c59987..e0a02ea65f 100644
--- a/libavfilter/vf_spp.c
+++ b/libavfilter/vf_spp.c
@@ -310,8 +310,6 @@ static void filter(SPPContext *p, uint8_t *dst, uint8_t *src,
}
}
-static int query_formats(AVFilterContext *ctx)
-{
static const enum AVPixelFormat pix_fmts[] = {
AV_PIX_FMT_YUV444P, AV_PIX_FMT_YUV422P,
AV_PIX_FMT_YUV420P, AV_PIX_FMT_YUV411P,
@@ -329,9 +327,6 @@ static int query_formats(AVFilterContext *ctx)
AV_PIX_FMT_NONE
};
- return ff_set_common_formats_from_list(ctx, pix_fmts);
-}
-
static int config_input(AVFilterLink *inlink)
{
SPPContext *s = inlink->dst->priv;
@@ -503,7 +498,7 @@ const AVFilter ff_vf_spp = {
.uninit = uninit,
FILTER_INPUTS(spp_inputs),
FILTER_OUTPUTS(spp_outputs),
- FILTER_QUERY_FUNC(query_formats),
+ FILTER_PIXFMTS_ARRAY(pix_fmts),
.process_command = process_command,
.priv_class = &spp_class,
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL,