1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

cosmetics: Fix weird indentations

This commit is contained in:
Timothy Gu
2015-12-07 10:42:28 -08:00
parent a8bb81a05c
commit 006d3e97fc
2 changed files with 9 additions and 9 deletions

View File

@@ -281,7 +281,7 @@ static av_always_inline av_const int64_t ff_rint64_clip(double a, int64_t amin,
if (a >= 9223372036854775808.0)
return amax;
if (a <= -9223372036854775808.0)
return amin;
return amin;
// safe to call llrint and clip accordingly
res = llrint(a);