Skip to content
Snippets Groups Projects
Commit f5fe9d5f authored by Fabrice Bellard's avatar Fabrice Bellard
Browse files

export int64_t_C as it is needed by libavformat.h

Originally committed as revision 2144 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 02d504a7
No related branches found
No related tags found
No related merge requests found
...@@ -118,13 +118,13 @@ typedef signed __int64 int64_t; ...@@ -118,13 +118,13 @@ typedef signed __int64 int64_t;
#include <inttypes.h> #include <inttypes.h>
#ifdef HAVE_AV_CONFIG_H
#ifndef int64_t_C #ifndef int64_t_C
#define int64_t_C(c) (c ## LL) #define int64_t_C(c) (c ## LL)
#define uint64_t_C(c) (c ## ULL) #define uint64_t_C(c) (c ## ULL)
#endif #endif
#ifdef HAVE_AV_CONFIG_H
#ifdef USE_FASTMEMCPY #ifdef USE_FASTMEMCPY
#include "fastmemcpy.h" #include "fastmemcpy.h"
#endif #endif
...@@ -138,13 +138,14 @@ typedef signed __int64 int64_t; ...@@ -138,13 +138,14 @@ typedef signed __int64 int64_t;
/* unix */ /* unix */
# include <inttypes.h> #include <inttypes.h>
# ifdef HAVE_AV_CONFIG_H #ifndef int64_t_C
# ifndef int64_t_C #define int64_t_C(c) (c ## LL)
# define int64_t_C(c) (c ## LL) #define uint64_t_C(c) (c ## ULL)
# define uint64_t_C(c) (c ## ULL) #endif
# endif
#ifdef HAVE_AV_CONFIG_H
# ifdef USE_FASTMEMCPY # ifdef USE_FASTMEMCPY
# include "fastmemcpy.h" # include "fastmemcpy.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment