diff options
author | Thilo Borgmann <thilo.borgmann@mail.de> | 2022-07-30 13:20:56 +0200 |
---|---|---|
committer | Thilo Borgmann <thilo.borgmann@mail.de> | 2022-07-30 13:20:56 +0200 |
commit | 665349c4c0fabb6cdb647c8803fad4f3c2937182 (patch) | |
tree | a8d158209f0b94f98ec62e4fc4dd484692e1938e | |
parent | cd8515eb70f7ab0961b9401248ff5046b99c67ec (diff) | |
download | ffmpeg-665349c4c0fabb6cdb647c8803fad4f3c2937182.tar.gz |
lavfi/vf_cropdetect: Reindent after last commit
-rw-r--r-- | libavfilter/vf_cropdetect.c | 8 |
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; |