diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-15 21:33:25 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-08-15 21:33:25 +0200 |
commit | 1b20853fb3e2c4879cdecf2414a2d68760df1149 (patch) | |
tree | 131de80408a5a252609a067b2ab1d086b30ef2b5 /libavfilter/vf_fade.c | |
parent | 32b56af6fb9f97749ad091c9373d399e4678457d (diff) | |
download | ffmpeg-1b20853fb3e2c4879cdecf2414a2d68760df1149.tar.gz |
avfilter/internal: Factor out executing a filter's execute_func
The current way of doing it involves writing the ctx parameter twice.
Reviewed-by: Nicolas George <george@nsup.org>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/vf_fade.c')
-rw-r--r-- | libavfilter/vf_fade.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/libavfilter/vf_fade.c b/libavfilter/vf_fade.c index 05ab762ec8..d801bf8c95 100644 --- a/libavfilter/vf_fade.c +++ b/libavfilter/vf_fade.c @@ -493,20 +493,20 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame) if (s->factor < UINT16_MAX) { if (s->alpha) { - ctx->internal->execute(ctx, s->filter_slice_alpha, frame, NULL, - FFMIN(frame->height, ff_filter_get_nb_threads(ctx))); + ff_filter_execute(ctx, s->filter_slice_alpha, frame, NULL, + FFMIN(frame->height, ff_filter_get_nb_threads(ctx))); } else if (s->is_rgb && !s->black_fade) { - ctx->internal->execute(ctx, filter_slice_rgb, frame, NULL, - FFMIN(frame->height, ff_filter_get_nb_threads(ctx))); + ff_filter_execute(ctx, filter_slice_rgb, frame, NULL, + FFMIN(frame->height, ff_filter_get_nb_threads(ctx))); } else { /* luma, or rgb plane in case of black */ - ctx->internal->execute(ctx, s->filter_slice_luma, frame, NULL, - FFMIN(frame->height, ff_filter_get_nb_threads(ctx))); + ff_filter_execute(ctx, s->filter_slice_luma, frame, NULL, + FFMIN(frame->height, ff_filter_get_nb_threads(ctx))); if (frame->data[1] && frame->data[2] && !s->is_rgb) { /* chroma planes */ - ctx->internal->execute(ctx, s->filter_slice_chroma, frame, NULL, - FFMIN(frame->height, ff_filter_get_nb_threads(ctx))); + ff_filter_execute(ctx, s->filter_slice_chroma, frame, NULL, + FFMIN(frame->height, ff_filter_get_nb_threads(ctx))); } } } |