summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorThilo Borgmann <thilo.borgmann@mail.de>2022-06-04 13:47:31 +0200
committerThilo Borgmann <thilo.borgmann@mail.de>2022-06-06 09:09:34 +0200
commit72106d6cc310b33ffa5b18367772d74f327acd1e (patch)
tree0c1fee50728e54ae6326327ab91cc2ce92a46093 /libavfilter
parentb7cea557304b8733074f512629043f37130c5181 (diff)
lavfi/blockdetect: Reindent after last commit
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_blockdetect.c8
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);
}
}