Mercurial > libavcodec.hg
diff common.h @ 1413:724e6477f2a8 libavcodec
export int64_t_C as it is needed by libavformat.h
| author | bellard |
|---|---|
| date | Sun, 24 Aug 2003 16:00:34 +0000 |
| parents | f5a107782a66 |
| children | 958d9c0cedba |
line wrap: on
line diff
--- a/common.h Sun Aug 24 13:57:42 2003 +0000 +++ b/common.h Sun Aug 24 16:00:34 2003 +0000 @@ -118,13 +118,13 @@ #include <inttypes.h> -#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 @@ /* unix */ -# include <inttypes.h> +#include <inttypes.h> -# 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"
