mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 09:02:20 +00:00
lavfi/f_select: switch to query_func2()
Also, drop redundant calls that also happen implicitly in generic code. Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
acc4cc464f
commit
3731af037f
@ -538,13 +538,13 @@ const AVFilter ff_af_aselect = {
|
||||
|
||||
#if CONFIG_SELECT_FILTER
|
||||
|
||||
static int query_formats(AVFilterContext *ctx)
|
||||
static int query_formats(const AVFilterContext *ctx,
|
||||
AVFilterFormatsConfig **cfg_in,
|
||||
AVFilterFormatsConfig **cfg_out)
|
||||
{
|
||||
SelectContext *select = ctx->priv;
|
||||
const SelectContext *select = ctx->priv;
|
||||
|
||||
if (!select->do_scene_detect) {
|
||||
return ff_default_query_formats(ctx);
|
||||
} else {
|
||||
if (select->do_scene_detect) {
|
||||
static const enum AVPixelFormat pix_fmts[] = {
|
||||
AV_PIX_FMT_RGB24, AV_PIX_FMT_BGR24, AV_PIX_FMT_RGBA,
|
||||
AV_PIX_FMT_ABGR, AV_PIX_FMT_BGRA, AV_PIX_FMT_GRAY8,
|
||||
@ -553,8 +553,9 @@ static int query_formats(AVFilterContext *ctx)
|
||||
AV_PIX_FMT_YUV420P10,
|
||||
AV_PIX_FMT_NONE
|
||||
};
|
||||
return ff_set_common_formats_from_list(ctx, pix_fmts);
|
||||
return ff_set_common_formats_from_list2(ctx, cfg_in, cfg_out, pix_fmts);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
DEFINE_OPTIONS(select, AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_FILTERING_PARAM);
|
||||
@ -587,7 +588,7 @@ const AVFilter ff_vf_select = {
|
||||
.priv_class = &select_class,
|
||||
.activate = activate,
|
||||
FILTER_INPUTS(select_inputs),
|
||||
FILTER_QUERY_FUNC(query_formats),
|
||||
FILTER_QUERY_FUNC2(query_formats),
|
||||
.flags = AVFILTER_FLAG_DYNAMIC_OUTPUTS | AVFILTER_FLAG_METADATA_ONLY,
|
||||
};
|
||||
#endif /* CONFIG_SELECT_FILTER */
|
||||
|
Loading…
Reference in New Issue
Block a user