mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/af_atilt: use ff_filter_execute()
Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
This commit is contained in:
parent
9fd2b39428
commit
afcf226b33
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue