Commit 11722447 authored by bellard's avatar bellard

export int64_t_C as it is needed by libavformat.h


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2144 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8c50b14b
...@@ -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"
......
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