From 11bc0a429d35815da7950f85b5f48f90758dc9ef Mon Sep 17 00:00:00 2001 From: Thilo Borgmann Date: Sat, 4 Jun 2022 13:47:31 +0200 Subject: [PATCH 2/2] lavfi/blockdetect: Reindent after last commit --- libavfilter/vf_blockdetect.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavfilter/vf_blockdetect.c b/libavfilter/vf_blockdetect.c index 85fca68..2728359 100644 --- a/libavfilter/vf_blockdetect.c +++ b/libavfilter/vf_blockdetect.c @@ -133,8 +133,8 @@ static float calculate_blockiness(BLKContext *s, int w, int h, } } if (block_count && nonblock_count) { - temp = (block / block_count) / (nonblock / nonblock_count); - ret = FFMAX(ret, temp); + temp = (block / block_count) / (nonblock / nonblock_count); + ret = FFMAX(ret, temp); } } @@ -178,8 +178,8 @@ static float calculate_blockiness(BLKContext *s, int w, int h, } } if (block_count && nonblock_count) { - temp = (block / block_count) / (nonblock / nonblock_count); - ret = FFMAX(ret, temp); + temp = (block / block_count) / (nonblock / nonblock_count); + ret = FFMAX(ret, temp); } } -- 1.8.3.2