Commit ccb33caf authored by Paul B Mahol's avatar Paul B Mahol

avfilter/vsrc_mandelbrot: rename misleading variable

parent 38804e0e
......@@ -146,17 +146,17 @@ static av_cold void uninit(AVFilterContext *ctx)
av_freep(&s->zyklus);
}
static int config_props(AVFilterLink *inlink)
static int config_props(AVFilterLink *outlink)
{
AVFilterContext *ctx = inlink->src;
AVFilterContext *ctx = outlink->src;
MBContext *s = ctx->priv;
if (av_image_check_size(s->w, s->h, 0, ctx) < 0)
return AVERROR(EINVAL);
inlink->w = s->w;
inlink->h = s->h;
inlink->time_base = av_inv_q(s->frame_rate);
outlink->w = s->w;
outlink->h = s->h;
outlink->time_base = av_inv_q(s->frame_rate);
return 0;
}
......
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