mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avfilter/vf_blend: Deduplicate outputs
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
parent
1d33a310df
commit
2e2c28119f
@ -378,6 +378,14 @@ static int process_command(AVFilterContext *ctx, const char *cmd, const char *ar
|
||||
return config_params(ctx);
|
||||
}
|
||||
|
||||
static const AVFilterPad blend_outputs[] = {
|
||||
{
|
||||
.name = "default",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.config_props = config_output,
|
||||
},
|
||||
};
|
||||
|
||||
#if CONFIG_BLEND_FILTER
|
||||
|
||||
static int activate(AVFilterContext *ctx)
|
||||
@ -396,14 +404,6 @@ static const AVFilterPad blend_inputs[] = {
|
||||
},
|
||||
};
|
||||
|
||||
static const AVFilterPad blend_outputs[] = {
|
||||
{
|
||||
.name = "default",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.config_props = config_output,
|
||||
},
|
||||
};
|
||||
|
||||
const AVFilter ff_vf_blend = {
|
||||
.name = "blend",
|
||||
.description = NULL_IF_CONFIG_SMALL("Blend two video frames into each other."),
|
||||
@ -455,14 +455,6 @@ static const AVFilterPad tblend_inputs[] = {
|
||||
},
|
||||
};
|
||||
|
||||
static const AVFilterPad tblend_outputs[] = {
|
||||
{
|
||||
.name = "default",
|
||||
.type = AVMEDIA_TYPE_VIDEO,
|
||||
.config_props = config_output,
|
||||
},
|
||||
};
|
||||
|
||||
const AVFilter ff_vf_tblend = {
|
||||
.name = "tblend",
|
||||
.description = NULL_IF_CONFIG_SMALL("Blend successive frames."),
|
||||
@ -471,7 +463,7 @@ const AVFilter ff_vf_tblend = {
|
||||
.init = init,
|
||||
.uninit = uninit,
|
||||
FILTER_INPUTS(tblend_inputs),
|
||||
FILTER_OUTPUTS(tblend_outputs),
|
||||
FILTER_OUTPUTS(blend_outputs),
|
||||
FILTER_PIXFMTS_ARRAY(pix_fmts),
|
||||
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
|
||||
.process_command = process_command,
|
||||
|
Loading…
Reference in New Issue
Block a user