# HG changeset patch # User mru # Date 1278523659 0 # Node ID 2cbad2391250c99ec70309260644deb0582ffdea # Parent 0a6c0fb069d28f91ea753036560cd3723497c758 intmath: whitespace cosmetics diff -r 0a6c0fb069d2 -r 2cbad2391250 intmath.h --- a/intmath.h Sun Jul 04 20:38:46 2010 +0000 +++ b/intmath.h Wed Jul 07 17:27:39 2010 +0000 @@ -36,25 +36,20 @@ #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 */ /*