From 6d51d65fb99d2dd02cb5589226641f4cb75752db Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 10 May 2021 15:17:21 +0200 Subject: lavfi/vf_scale: pass only the private context to scale_slice() Not the input link. The function does nothing with the link except extract the private context from it. --- libavfilter/vf_scale.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'libavfilter/vf_scale.c') diff --git a/libavfilter/vf_scale.c b/libavfilter/vf_scale.c index 759499395f..72b49e8918 100644 --- a/libavfilter/vf_scale.c +++ b/libavfilter/vf_scale.c @@ -622,9 +622,8 @@ static int request_frame_ref(AVFilterLink *outlink) return ff_request_frame(outlink->src->inputs[1]); } -static int scale_slice(AVFilterLink *link, AVFrame *out_buf, AVFrame *cur_pic, struct SwsContext *sws, int y, int h, int mul, int field) +static int scale_slice(ScaleContext *scale, AVFrame *out_buf, AVFrame *cur_pic, struct SwsContext *sws, int y, int h, int mul, int field) { - ScaleContext *scale = link->dst->priv; const uint8_t *in[4]; uint8_t *out[4]; int in_stride[4],out_stride[4]; @@ -792,8 +791,8 @@ scale: INT_MAX); if (scale->interlaced>0 || (scale->interlaced<0 && in->interlaced_frame)) { - scale_slice(link, out, in, scale->isws[0], 0, (link->h+1)/2, 2, 0); - scale_slice(link, out, in, scale->isws[1], 0, link->h /2, 2, 1); + scale_slice(scale, out, in, scale->isws[0], 0, (link->h+1)/2, 2, 0); + scale_slice(scale, out, in, scale->isws[1], 0, link->h /2, 2, 1); } else if (scale->nb_slices) { int i, slice_h, slice_start, slice_end = 0; const int nb_slices = FFMIN(scale->nb_slices, link->h); @@ -801,10 +800,10 @@ scale: slice_start = slice_end; slice_end = (link->h * (i+1)) / nb_slices; slice_h = slice_end - slice_start; - scale_slice(link, out, in, scale->sws, slice_start, slice_h, 1, 0); + scale_slice(scale, out, in, scale->sws, slice_start, slice_h, 1, 0); } } else { - scale_slice(link, out, in, scale->sws, 0, link->h, 1, 0); + scale_slice(scale, out, in, scale->sws, 0, link->h, 1, 0); } av_frame_free(&in); -- cgit v1.2.3