mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-24 20:19:55 +00:00
export int64_t_C as it is needed by libavformat.h
Originally committed as revision 2144 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
02d504a7d3
commit
f5fe9d5f8c
@ -118,13 +118,13 @@ typedef signed __int64 int64_t;
|
||||
|
||||
#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 @@ typedef signed __int64 int64_t;
|
||||
|
||||
/* 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"
|
||||
|
Loading…
Reference in New Issue
Block a user