summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-09-27 16:47:35 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-10-05 18:58:24 +0200
commit9a62afc5fc609468257d227ad59e7dc08125e076 (patch)
tree0f10cfb9d11715ae3a2fb3cceb0876e43fcffac3
parent84b04e610d14734e144d58ca238fc11fec377962 (diff)
avfilter/vsrc_mandelbrot: Store format in filter, remove query func
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-rw-r--r--libavfilter/vsrc_mandelbrot.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/libavfilter/vsrc_mandelbrot.c b/libavfilter/vsrc_mandelbrot.c
index cf7da01506..83e39f1d13 100644
--- a/libavfilter/vsrc_mandelbrot.c
+++ b/libavfilter/vsrc_mandelbrot.c
@@ -146,16 +146,6 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep(&s->zyklus);
}
-static int query_formats(AVFilterContext *ctx)
-{
- static const enum AVPixelFormat pix_fmts[] = {
- AV_PIX_FMT_0BGR32,
- AV_PIX_FMT_NONE
- };
-
- return ff_set_common_formats_from_list(ctx, pix_fmts);
-}
-
static int config_props(AVFilterLink *inlink)
{
AVFilterContext *ctx = inlink->src;
@@ -424,5 +414,5 @@ const AVFilter ff_vsrc_mandelbrot = {
.uninit = uninit,
.inputs = NULL,
FILTER_OUTPUTS(mandelbrot_outputs),
- FILTER_QUERY_FUNC(query_formats),
+ FILTER_SINGLE_PIXFMT(AV_PIX_FMT_0BGR32),
};