Commit 635eb0cc authored by Måns Rullgård's avatar Måns Rullgård

indentation

Originally committed as revision 7046 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 18451f7d
...@@ -30,15 +30,15 @@ ...@@ -30,15 +30,15 @@
# define PIC # define PIC
#endif #endif
# ifndef ENODATA #ifndef ENODATA
# define ENODATA 61 # define ENODATA 61
# endif #endif
#include "bswap.h" #include "bswap.h"
#include <stddef.h> #include <stddef.h>
#ifndef offsetof #ifndef offsetof
# define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F)) # define offsetof(T,F) ((unsigned int)((char *)&((T *)0)->F))
#endif #endif
#ifdef __MINGW32__ #ifdef __MINGW32__
...@@ -57,51 +57,51 @@ ...@@ -57,51 +57,51 @@
#elif defined (CONFIG_OS2) #elif defined (CONFIG_OS2)
/* OS/2 EMX */ /* OS/2 EMX */
#include <float.h> # include <float.h>
#endif /* !__MINGW32__ && CONFIG_OS2 */ #endif /* !__MINGW32__ && CONFIG_OS2 */
# ifdef USE_FASTMEMCPY #ifdef USE_FASTMEMCPY
# include "libvo/fastmemcpy.h" # include "libvo/fastmemcpy.h"
# endif #endif
// Use rip-relative addressing if compiling PIC code on x86-64. // Use rip-relative addressing if compiling PIC code on x86-64.
# if defined(__MINGW32__) || defined(__CYGWIN__) || \ #if defined(__MINGW32__) || defined(__CYGWIN__) || \
defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__)) defined(__OS2__) || (defined (__OpenBSD__) && !defined(__ELF__))
# if defined(ARCH_X86_64) && defined(PIC) # if defined(ARCH_X86_64) && defined(PIC)
# define MANGLE(a) "_" #a"(%%rip)" # define MANGLE(a) "_" #a"(%%rip)"
# else
# define MANGLE(a) "_" #a
# endif
# else # else
# if defined(ARCH_X86_64) && defined(PIC) # define MANGLE(a) "_" #a
# define MANGLE(a) #a"(%%rip)"
# elif defined(CONFIG_DARWIN)
# define MANGLE(a) "_" #a
# else
# define MANGLE(a) #a
# endif
# endif # 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 */ /* debug stuff */
# if !defined(DEBUG) && !defined(NDEBUG) #if !defined(DEBUG) && !defined(NDEBUG)
# define NDEBUG # define NDEBUG
# endif #endif
# include <assert.h> #include <assert.h>
/* dprintf macros */ /* dprintf macros */
# ifdef DEBUG #ifdef DEBUG
# define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__) # define dprintf(fmt,...) av_log(NULL, AV_LOG_DEBUG, fmt, __VA_ARGS__)
# else #else
# define dprintf(fmt,...) # define dprintf(fmt,...)
# endif #endif
# ifdef CONFIG_WINCE #ifdef CONFIG_WINCE
# define abort() # define abort()
# endif #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]; extern const uint32_t ff_inverse[256];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment