From f5fe9d5f8ce09a01f6738f234935b270364b229e Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Sun, 24 Aug 2003 16:00:34 +0000 Subject: export int64_t_C as it is needed by libavformat.h Originally committed as revision 2144 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/common.h | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) (limited to 'libavcodec') diff --git a/libavcodec/common.h b/libavcodec/common.h index 73da2c5d22..48db261155 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -118,13 +118,13 @@ typedef signed __int64 int64_t; #include -#ifdef HAVE_AV_CONFIG_H - #ifndef int64_t_C #define int64_t_C(c) (c ## LL) #define uint64_t_C(c) (c ## ULL) #endif +#ifdef HAVE_AV_CONFIG_H + #ifdef USE_FASTMEMCPY #include "fastmemcpy.h" #endif @@ -138,13 +138,14 @@ typedef signed __int64 int64_t; /* unix */ -# include +#include -# ifdef HAVE_AV_CONFIG_H -# ifndef int64_t_C -# define int64_t_C(c) (c ## LL) -# define uint64_t_C(c) (c ## ULL) -# endif +#ifndef int64_t_C +#define int64_t_C(c) (c ## LL) +#define uint64_t_C(c) (c ## ULL) +#endif + +#ifdef HAVE_AV_CONFIG_H # ifdef USE_FASTMEMCPY # include "fastmemcpy.h" -- cgit v1.2.3