[FFmpeg-devel] [PATCH 069/218] avfilter/vf_framepack: Use formats list instead of query function
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Thu Sep 30 16:40:10 EEST 2021
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
libavfilter/vf_framepack.c | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/libavfilter/vf_framepack.c b/libavfilter/vf_framepack.c
index eb6fb70ae7..f30909ccff 100644
--- a/libavfilter/vf_framepack.c
+++ b/libavfilter/vf_framepack.c
@@ -79,12 +79,6 @@ static const enum AVPixelFormat formats_supported[] = {
AV_PIX_FMT_NONE
};
-static int query_formats(AVFilterContext *ctx)
-{
- // this will ensure that formats are the same on all pads
- return ff_set_common_formats_from_list(ctx, formats_supported);
-}
-
static av_cold void framepack_uninit(AVFilterContext *ctx)
{
FramepackContext *s = ctx->priv;
@@ -471,7 +465,7 @@ const AVFilter ff_vf_framepack = {
.priv_class = &framepack_class,
FILTER_INPUTS(framepack_inputs),
FILTER_OUTPUTS(framepack_outputs),
- FILTER_QUERY_FUNC(query_formats),
+ FILTER_PIXFMTS_ARRAY(formats_supported),
.activate = activate,
.uninit = framepack_uninit,
};
--
2.30.2
More information about the ffmpeg-devel
mailing list