[FFmpeg-cvslog] cosmetics: Fix weird indentations
Timothy Gu
git at videolan.org
Mon Dec 7 19:44:02 CET 2015
ffmpeg | branch: master | Timothy Gu <timothygu99 at gmail.com> | Mon Dec 7 10:42:28 2015 -0800| [006d3e97fc8f44488f5935607bb45fce19ea641a] | committer: Timothy Gu
cosmetics: Fix weird indentations
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=006d3e97fc8f44488f5935607bb45fce19ea641a
---
cmdutils.c | 16 ++++++++--------
libavutil/internal.h | 2 +-
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/cmdutils.c b/cmdutils.c
index ceec2d1..e0d2807 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 8d2d875..f86b7fb 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);
More information about the ffmpeg-cvslog
mailing list