Commit a9705e4d authored by Clément Bœsch's avatar Clément Bœsch

lavfi/curves: avoid ctx pointer indirection.

parent 496f2df9
......@@ -478,7 +478,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
int x, y, direct = 0;
AVFilterContext *ctx = inlink->dst;
CurvesContext *curves = ctx->priv;
AVFilterLink *outlink = inlink->dst->outputs[0];
AVFilterLink *outlink = ctx->outputs[0];
AVFrame *out;
uint8_t *dst;
const uint8_t *src;
......
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