diff options
author | Thilo Borgmann <thilo.borgmann@mail.de> | 2022-06-04 13:47:31 +0200 |
---|---|---|
committer | Thilo Borgmann <thilo.borgmann@mail.de> | 2022-06-06 09:09:34 +0200 |
commit | 72106d6cc310b33ffa5b18367772d74f327acd1e (patch) | |
tree | 0c1fee50728e54ae6326327ab91cc2ce92a46093 /libavfilter | |
parent | b7cea557304b8733074f512629043f37130c5181 (diff) | |
download | ffmpeg-72106d6cc310b33ffa5b18367772d74f327acd1e.tar.gz |
lavfi/blockdetect: Reindent after last commit
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_blockdetect.c | 8 |
1 files 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); } } |