Commit b496e7b2 authored by Andreas Rheinhardt's avatar Andreas Rheinhardt

avfilter/vf_xbr: Store format in filter, remove query function

Signed-off-by: 's avatarAndreas Rheinhardt <andreas.rheinhardt@outlook.com>
parent bb2b5254
......@@ -340,15 +340,6 @@ static int config_output(AVFilterLink *outlink)
return 0;
}
static int query_formats(AVFilterContext *ctx)
{
static const enum AVPixelFormat pix_fmts[] = {
AV_PIX_FMT_0RGB32, AV_PIX_FMT_NONE,
};
return ff_set_common_formats_from_list(ctx, pix_fmts);
}
static int filter_frame(AVFilterLink *inlink, AVFrame *in)
{
AVFilterContext *ctx = inlink->dst;
......@@ -425,7 +416,7 @@ const AVFilter ff_vf_xbr = {
.description = NULL_IF_CONFIG_SMALL("Scale the input using xBR algorithm."),
FILTER_INPUTS(xbr_inputs),
FILTER_OUTPUTS(xbr_outputs),
FILTER_QUERY_FUNC(query_formats),
FILTER_SINGLE_PIXFMT(AV_PIX_FMT_0RGB32),
.priv_size = sizeof(XBRContext),
.priv_class = &xbr_class,
.init = init,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment