Commit afcf226b authored by Limin Wang's avatar Limin Wang Committed by Paul B Mahol

avfilter/af_atilt: use ff_filter_execute()

Signed-off-by: 's avatarLimin Wang <lance.lmwang@gmail.com>
parent 9fd2b394
......@@ -196,7 +196,7 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)
}
td.in = in; td.out = out;
ctx->internal->execute(ctx, s->filter_channels, &td, NULL, FFMIN(inlink->channels,
ff_filter_execute(ctx, s->filter_channels, &td, NULL, FFMIN(inlink->channels,
ff_filter_get_nb_threads(ctx)));
if (out != in)
......
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