diff mbox series

[FFmpeg-devel,1/2] avfilter/af_atilt: use ff_filter_execute()

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

Checks

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

Commit Message

Lance Wang Nov. 5, 2021, 12:32 p.m. UTC
From: Limin Wang <lance.lmwang@gmail.com>

Signed-off-by: Limin Wang <lance.lmwang@gmail.com>
---
 libavfilter/af_atilt.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Paul B Mahol Nov. 8, 2021, 8:40 p.m. UTC | #1
lgtm
diff mbox series

Patch

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)