Commit a8c762a1 authored by Limin Wang's avatar Limin Wang

avfilter/vf_signalstats: rename config_props -> config_output

Signed-off-by: 's avatarLimin Wang <lance.lmwang@gmail.com>
parent 5752e97b
...@@ -157,7 +157,7 @@ static AVFrame *alloc_frame(enum AVPixelFormat pixfmt, int w, int h) ...@@ -157,7 +157,7 @@ static AVFrame *alloc_frame(enum AVPixelFormat pixfmt, int w, int h)
return frame; return frame;
} }
static int config_props(AVFilterLink *outlink) static int config_output(AVFilterLink *outlink)
{ {
AVFilterContext *ctx = outlink->src; AVFilterContext *ctx = outlink->src;
SignalstatsContext *s = ctx->priv; SignalstatsContext *s = ctx->priv;
...@@ -1004,7 +1004,7 @@ static const AVFilterPad signalstats_inputs[] = { ...@@ -1004,7 +1004,7 @@ static const AVFilterPad signalstats_inputs[] = {
static const AVFilterPad signalstats_outputs[] = { static const AVFilterPad signalstats_outputs[] = {
{ {
.name = "default", .name = "default",
.config_props = config_props, .config_props = config_output,
.type = AVMEDIA_TYPE_VIDEO, .type = AVMEDIA_TYPE_VIDEO,
}, },
{ NULL } { NULL }
......
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