[FFmpeg-cvslog] r24085 - trunk/libavutil/intmath.h

mru subversion
Wed Jul 7 19:27:39 CEST 2010


Author: mru
Date: Wed Jul  7 19:27:39 2010
New Revision: 24085

Log:
intmath: whitespace cosmetics

Modified:
   trunk/libavutil/intmath.h

Modified: trunk/libavutil/intmath.h
==============================================================================
--- trunk/libavutil/intmath.h	Wed Jul  7 15:10:57 2010	(r24084)
+++ trunk/libavutil/intmath.h	Wed Jul  7 19:27:39 2010	(r24085)
@@ -36,25 +36,20 @@ extern const uint32_t ff_inverse[257];
 #if HAVE_FAST_CLZ && AV_GCC_VERSION_AT_LEAST(3,4)
 
 #ifndef av_log2
-
-#define av_log2(x) (31 - __builtin_clz((x)|1))
-
-#ifndef av_log2_16bit
-#define av_log2_16bit av_log2
-#endif
-
+#   define av_log2(x) (31 - __builtin_clz((x)|1))
+#   ifndef av_log2_16bit
+#      define av_log2_16bit av_log2
+#   endif
 #endif /* av_log2 */
 
 #endif /* AV_GCC_VERSION_AT_LEAST(3,4) */
 
 #ifndef FASTDIV
-
-#if CONFIG_FASTDIV
-#    define FASTDIV(a,b)   ((uint32_t)((((uint64_t)a) * ff_inverse[b]) >> 32))
-#else
-#    define FASTDIV(a,b)   ((a) / (b))
-#endif
-
+#   if CONFIG_FASTDIV
+#       define FASTDIV(a,b) ((uint32_t)((((uint64_t)a) * ff_inverse[b]) >> 32))
+#   else
+#       define FASTDIV(a,b) ((a) / (b))
+#   endif
 #endif /* FASTDIV */
 
 /*



More information about the ffmpeg-cvslog mailing list