From 72106d6cc310b33ffa5b18367772d74f327acd1e Mon Sep 17 00:00:00 2001 From: Thilo Borgmann Date: Sat, 4 Jun 2022 13:47:31 +0200 Subject: [PATCH] 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 85fca68945..27283590be 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); } }