From 665349c4c0fabb6cdb647c8803fad4f3c2937182 Mon Sep 17 00:00:00 2001 From: Thilo Borgmann Date: Sat, 30 Jul 2022 13:20:56 +0200 Subject: lavfi/vf_cropdetect: Reindent after last commit --- libavfilter/vf_cropdetect.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavfilter/vf_cropdetect.c b/libavfilter/vf_cropdetect.c index e920e671ab..eec0c7ab68 100644 --- a/libavfilter/vf_cropdetect.c +++ b/libavfilter/vf_cropdetect.c @@ -290,10 +290,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *frame) } if (s->mode == MODE_BLACK) { - FIND(s->y1, 0, y < s->y1, +1, frame->linesize[0], bpp, frame->width); - FIND(s->y2, frame->height - 1, y > FFMAX(s->y2, s->y1), -1, frame->linesize[0], bpp, frame->width); - FIND(s->x1, 0, y < s->x1, +1, bpp, frame->linesize[0], frame->height); - FIND(s->x2, frame->width - 1, y > FFMAX(s->x2, s->x1), -1, bpp, frame->linesize[0], frame->height); + FIND(s->y1, 0, y < s->y1, +1, frame->linesize[0], bpp, frame->width); + FIND(s->y2, frame->height - 1, y > FFMAX(s->y2, s->y1), -1, frame->linesize[0], bpp, frame->width); + FIND(s->x1, 0, y < s->x1, +1, bpp, frame->linesize[0], frame->height); + FIND(s->x2, frame->width - 1, y > FFMAX(s->x2, s->x1), -1, bpp, frame->linesize[0], frame->height); } else { // MODE_MV_EDGES sd = av_frame_get_side_data(frame, AV_FRAME_DATA_MOTION_VECTORS); s->x1 = 0; -- cgit v1.2.3