avfilter/vf_blend: add support for commands
This commit is contained in:
parent
89e2fbceee
commit
3d7ee5c91a
@ -7455,6 +7455,9 @@ tblend=all_mode=grainextract
|
|||||||
@end example
|
@end example
|
||||||
@end itemize
|
@end itemize
|
||||||
|
|
||||||
|
@subsection Commands
|
||||||
|
This filter supports same @ref{commands} as options.
|
||||||
|
|
||||||
@section bm3d
|
@section bm3d
|
||||||
|
|
||||||
Denoise frames using Block-Matching 3D algorithm.
|
Denoise frames using Block-Matching 3D algorithm.
|
||||||
|
@ -61,7 +61,7 @@ typedef struct ThreadData {
|
|||||||
} ThreadData;
|
} ThreadData;
|
||||||
|
|
||||||
#define OFFSET(x) offsetof(BlendContext, x)
|
#define OFFSET(x) offsetof(BlendContext, x)
|
||||||
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
|
#define FLAGS AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM|AV_OPT_FLAG_RUNTIME_PARAM
|
||||||
|
|
||||||
static const AVOption blend_options[] = {
|
static const AVOption blend_options[] = {
|
||||||
{ "c0_mode", "set component #0 blend mode", OFFSET(params[0].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode" },
|
{ "c0_mode", "set component #0 blend mode", OFFSET(params[0].mode), AV_OPT_TYPE_INT, {.i64=0}, 0, BLEND_NB-1, FLAGS, "mode" },
|
||||||
@ -780,13 +780,45 @@ void ff_blend_init(FilterParams *param, int depth)
|
|||||||
ff_blend_init_x86(param, depth);
|
ff_blend_init_x86(param, depth);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int config_params(AVFilterContext *ctx)
|
||||||
|
{
|
||||||
|
BlendContext *s = ctx->priv;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
for (int plane = 0; plane < FF_ARRAY_ELEMS(s->params); plane++) {
|
||||||
|
FilterParams *param = &s->params[plane];
|
||||||
|
|
||||||
|
if (s->all_mode >= 0)
|
||||||
|
param->mode = s->all_mode;
|
||||||
|
if (s->all_opacity < 1)
|
||||||
|
param->opacity = s->all_opacity;
|
||||||
|
|
||||||
|
ff_blend_init(param, s->depth);
|
||||||
|
|
||||||
|
if (s->all_expr && !param->expr_str) {
|
||||||
|
param->expr_str = av_strdup(s->all_expr);
|
||||||
|
if (!param->expr_str)
|
||||||
|
return AVERROR(ENOMEM);
|
||||||
|
}
|
||||||
|
if (param->expr_str) {
|
||||||
|
ret = av_expr_parse(¶m->e, param->expr_str, var_names,
|
||||||
|
NULL, NULL, NULL, NULL, 0, ctx);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
param->blend = s->depth > 8 ? s->depth > 16 ? blend_expr_32bit : blend_expr_16bit : blend_expr_8bit;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
static int config_output(AVFilterLink *outlink)
|
static int config_output(AVFilterLink *outlink)
|
||||||
{
|
{
|
||||||
AVFilterContext *ctx = outlink->src;
|
AVFilterContext *ctx = outlink->src;
|
||||||
AVFilterLink *toplink = ctx->inputs[TOP];
|
AVFilterLink *toplink = ctx->inputs[TOP];
|
||||||
BlendContext *s = ctx->priv;
|
BlendContext *s = ctx->priv;
|
||||||
const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(toplink->format);
|
const AVPixFmtDescriptor *pix_desc = av_pix_fmt_desc_get(toplink->format);
|
||||||
int ret, plane;
|
int ret;
|
||||||
|
|
||||||
if (!s->tblend) {
|
if (!s->tblend) {
|
||||||
AVFilterLink *bottomlink = ctx->inputs[BOTTOM];
|
AVFilterLink *bottomlink = ctx->inputs[BOTTOM];
|
||||||
@ -821,29 +853,9 @@ static int config_output(AVFilterLink *outlink)
|
|||||||
if ((ret = ff_framesync_init_dualinput(&s->fs, ctx)) < 0)
|
if ((ret = ff_framesync_init_dualinput(&s->fs, ctx)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
for (plane = 0; plane < FF_ARRAY_ELEMS(s->params); plane++) {
|
ret = config_params(ctx);
|
||||||
FilterParams *param = &s->params[plane];
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
if (s->all_mode >= 0)
|
|
||||||
param->mode = s->all_mode;
|
|
||||||
if (s->all_opacity < 1)
|
|
||||||
param->opacity = s->all_opacity;
|
|
||||||
|
|
||||||
ff_blend_init(param, s->depth);
|
|
||||||
|
|
||||||
if (s->all_expr && !param->expr_str) {
|
|
||||||
param->expr_str = av_strdup(s->all_expr);
|
|
||||||
if (!param->expr_str)
|
|
||||||
return AVERROR(ENOMEM);
|
|
||||||
}
|
|
||||||
if (param->expr_str) {
|
|
||||||
ret = av_expr_parse(¶m->e, param->expr_str, var_names,
|
|
||||||
NULL, NULL, NULL, NULL, 0, ctx);
|
|
||||||
if (ret < 0)
|
|
||||||
return ret;
|
|
||||||
param->blend = s->depth > 8 ? s->depth > 16 ? blend_expr_32bit : blend_expr_16bit : blend_expr_8bit;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (s->tblend)
|
if (s->tblend)
|
||||||
return 0;
|
return 0;
|
||||||
@ -854,6 +866,18 @@ static int config_output(AVFilterLink *outlink)
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int process_command(AVFilterContext *ctx, const char *cmd, const char *args,
|
||||||
|
char *res, int res_len, int flags)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = ff_filter_process_command(ctx, cmd, args, res, res_len, flags);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
return config_params(ctx);
|
||||||
|
}
|
||||||
|
|
||||||
#if CONFIG_BLEND_FILTER
|
#if CONFIG_BLEND_FILTER
|
||||||
|
|
||||||
static int activate(AVFilterContext *ctx)
|
static int activate(AVFilterContext *ctx)
|
||||||
@ -895,6 +919,7 @@ AVFilter ff_vf_blend = {
|
|||||||
.outputs = blend_outputs,
|
.outputs = blend_outputs,
|
||||||
.priv_class = &blend_class,
|
.priv_class = &blend_class,
|
||||||
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
|
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
|
||||||
|
.process_command = process_command,
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
@ -954,6 +979,7 @@ AVFilter ff_vf_tblend = {
|
|||||||
.inputs = tblend_inputs,
|
.inputs = tblend_inputs,
|
||||||
.outputs = tblend_outputs,
|
.outputs = tblend_outputs,
|
||||||
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
|
.flags = AVFILTER_FLAG_SUPPORT_TIMELINE_INTERNAL | AVFILTER_FLAG_SLICE_THREADS,
|
||||||
|
.process_command = process_command,
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user