diff options
author | Måns Rullgård <mans@mansr.com> | 2006-11-14 03:35:50 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-11-14 03:35:50 +0000 |
commit | 635eb0cc3d65b074e03c8dd608345f96631c459f (patch) | |
tree | 30d7dc592d328fd274fb9269424ab09404e2aa38 | |
parent | 18451f7df9f202353249d455aa6a79023dc79659 (diff) | |
download | ffmpeg-635eb0cc3d65b074e03c8dd608345f96631c459f.tar.gz |
indentation
Originally committed as revision 7046 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavutil/internal.h | 70 |
1 files changed, 35 insertions, 35 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h index 21fa3291b6..e2316e647a 100644 --- a/libavutil/internal.h +++ b/libavutil/internal.h @@ -30,15 +30,15 @@ # define PIC #endif -# ifndef ENODATA -# define ENODATA 61 -# endif +#ifndef ENODATA +# define ENODATA 61 +#endif #include "bswap.h" #include <stddef.h> #ifndef offsetof -# define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F)) +# define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F)) #endif #ifdef __MINGW32__ @@ -57,51 +57,51 @@ #elif defined (CONFIG_OS2) /* OS/2 EMX */ -#include <float.h> +# include <float.h> #endif /* !__MINGW32__ && CONFIG_OS2 */ -# ifdef USE_FASTMEMCPY -# include "libvo/fastmemcpy.h" -# endif +#ifdef USE_FASTMEMCPY +# include "libvo/fastmemcpy.h" +#endif // Use rip-relative addressing if compiling PIC code on x86-64. -# if defined(__MINGW32__) || defined(__CYGWIN__) || \ - defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__)) -# if defined(ARCH_X86_64) && defined(PIC) -# define MANGLE(a) "_" #a"(%%rip)" -# else -# define MANGLE(a) "_" #a -# endif +#if defined(__MINGW32__) || defined(__CYGWIN__) || \ + defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__)) +# if defined(ARCH_X86_64) && defined(PIC) +# define MANGLE(a) "_" #a"(%%rip)" # else -# if defined(ARCH_X86_64) && defined(PIC) -# define MANGLE(a) #a"(%%rip)" -# elif defined(CONFIG_DARWIN) -# define MANGLE(a) "_" #a -# else -# define MANGLE(a) #a -# endif +# define MANGLE(a) "_" #a # endif +#else +# if defined(ARCH_X86_64) && defined(PIC) +# define MANGLE(a) #a"(%%rip)" +# elif defined(CONFIG_DARWIN) +# define MANGLE(a) "_" #a +# else +# define MANGLE(a) #a +# endif +#endif /* debug stuff */ -# if !defined(DEBUG) && !defined(NDEBUG) -# define NDEBUG -# endif -# include <assert.h> +#if !defined(DEBUG) && !defined(NDEBUG) +# define NDEBUG +#endif +#include <assert.h> /* dprintf macros */ -# ifdef DEBUG -# define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__) -# else -# define dprintf(fmt,...) -# endif +#ifdef DEBUG +# define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__) +#else +# define dprintf(fmt,...) +#endif -# ifdef CONFIG_WINCE -# define abort() -# endif +#ifdef CONFIG_WINCE +# define abort() +#endif -# define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0) +#define av_abort() do { av_log(NULL, AV_LOG_ERROR, "Abort at %s:%d\n", __FILE__, __LINE__); abort(); } while (0) extern const uint32_t ff_inverse[256]; |