aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2015-12-07 10:42:28 -0800
committerTimothy Gu <timothygu99@gmail.com>2015-12-07 10:43:43 -0800
commit006d3e97fc8f44488f5935607bb45fce19ea641a (patch)
tree6bd134c62cfe371afdca0971de81f743a6d35850
parenta8bb81a05c519dd3f36cc341e5fb448f6d17fa73 (diff)
downloadffmpeg-006d3e97fc8f44488f5935607bb45fce19ea641a.tar.gz
cosmetics: Fix weird indentations
-rw-r--r--cmdutils.c16
-rw-r--r--libavutil/internal.h2
2 files changed, 9 insertions, 9 deletions
diff --git a/cmdutils.c b/cmdutils.c
index ceec2d1966..e0d2807553 100644
--- a/cmdutils.c
+++ b/cmdutils.c
@@ -1079,15 +1079,15 @@ static int warned_cfg = 0;
static void print_all_libs_info(int flags, int level)
{
- PRINT_LIB_INFO(avutil, AVUTIL, flags, level);
- PRINT_LIB_INFO(avcodec, AVCODEC, flags, level);
- PRINT_LIB_INFO(avformat, AVFORMAT, flags, level);
- PRINT_LIB_INFO(avdevice, AVDEVICE, flags, level);
- PRINT_LIB_INFO(avfilter, AVFILTER, flags, level);
+ PRINT_LIB_INFO(avutil, AVUTIL, flags, level);
+ PRINT_LIB_INFO(avcodec, AVCODEC, flags, level);
+ PRINT_LIB_INFO(avformat, AVFORMAT, flags, level);
+ PRINT_LIB_INFO(avdevice, AVDEVICE, flags, level);
+ PRINT_LIB_INFO(avfilter, AVFILTER, flags, level);
PRINT_LIB_INFO(avresample, AVRESAMPLE, flags, level);
- PRINT_LIB_INFO(swscale, SWSCALE, flags, level);
- PRINT_LIB_INFO(swresample,SWRESAMPLE, flags, level);
- PRINT_LIB_INFO(postproc, POSTPROC, flags, level);
+ PRINT_LIB_INFO(swscale, SWSCALE, flags, level);
+ PRINT_LIB_INFO(swresample, SWRESAMPLE, flags, level);
+ PRINT_LIB_INFO(postproc, POSTPROC, flags, level);
}
static void print_program_info(int flags, int level)
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 8d2d8759bf..f86b7fb741 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -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);