Message ID | 1636115536-13580-1-git-send-email-lance.lmwang@gmail.com |
---|---|
State | Accepted |
Commit | afcf226b337584f5028265b361d8a5a930696a31 |
Headers | show |
Series | [FFmpeg-devel,1/2] avfilter/af_atilt: use ff_filter_execute() | expand |
Context | Check | Description |
---|---|---|
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
andriy/make_ppc | success | Make finished |
andriy/make_fate_ppc | success | Make fate finished |
lgtm
diff --git a/libavfilter/af_atilt.c b/libavfilter/af_atilt.c index a1ce030..a6f7782 100644 --- a/libavfilter/af_atilt.c +++ b/libavfilter/af_atilt.c @@ -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)