mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-01 20:42:19 +00: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);
|
return config_params(ctx);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const AVFilterPad blend_outputs[] = {
|
||||||
|
{
|
||||||
|
.name = "default",
|
||||||
|
.type = AVMEDIA_TYPE_VIDEO,
|
||||||
|
.config_props = config_output,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
#if CONFIG_BLEND_FILTER
|
#if CONFIG_BLEND_FILTER
|
||||||
|
|
||||||
static int activate(AVFilterContext *ctx)
|
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 = {
|
const AVFilter ff_vf_blend = {
|
||||||
.name = "blend",
|
.name = "blend",
|
||||||
.description = NULL_IF_CONFIG_SMALL("Blend two video frames into each other."),
|
.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 = {
|
const AVFilter ff_vf_tblend = {
|
||||||
.name = "tblend",
|
.name = "tblend",
|
||||||
.description = NULL_IF_CONFIG_SMALL("Blend successive frames."),
|
.description = NULL_IF_CONFIG_SMALL("Blend successive frames."),
|
||||||
@ -471,7 +463,7 @@ const AVFilter ff_vf_tblend = {
|
|||||||
.init = init,
|
.init = init,
|
||||||
.uninit = uninit,
|
.uninit = uninit,
|
||||||
FILTER_INPUTS(tblend_inputs),
|
FILTER_INPUTS(tblend_inputs),
|
||||||
FILTER_OUTPUTS(tblend_outputs),
|
FILTER_OUTPUTS(blend_outputs),
|
||||||
FILTER_PIXFMTS_ARRAY(pix_fmts),
|
FILTER_PIXFMTS_ARRAY(pix_fmts),
|
||||||
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
|
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
|
||||||
.process_command = process_command,
|
.process_command = process_command,
|
||||||
|
Loading…
Reference in New Issue
Block a user