summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThilo Borgmann <thilo.borgmann@mail.de>2022-07-30 13:20:56 +0200
committerThilo Borgmann <thilo.borgmann@mail.de>2022-07-30 13:20:56 +0200
commit665349c4c0fabb6cdb647c8803fad4f3c2937182 (patch)
treea8d158209f0b94f98ec62e4fc4dd484692e1938e
parentcd8515eb70f7ab0961b9401248ff5046b99c67ec (diff)
lavfi/vf_cropdetect: Reindent after last commit
-rw-r--r--libavfilter/vf_cropdetect.c8
1 files 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;