Commit 6d861e63 authored by mru's avatar mru

simplify


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5738 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 55a1cc24
......@@ -172,14 +172,14 @@ typedef uint64_t uint_fast64_t;
# endif
#endif
#ifdef __MINGW32__
/* windows */
#ifndef int64_t_C
#define int64_t_C(c) (c ## LL)
#define uint64_t_C(c) (c ## ULL)
#endif
# define int64_t_C(c) (c ## LL)
# define uint64_t_C(c) (c ## ULL)
#ifdef HAVE_AV_CONFIG_H
# ifdef HAVE_AV_CONFIG_H
#ifdef __MINGW32__
# ifdef _DEBUG
# define DEBUG
# endif
......@@ -191,25 +191,14 @@ typedef uint64_t uint_fast64_t;
# define perror(a)
# endif
# endif
/* __MINGW32__ end */
#elif defined (CONFIG_OS2)
/* OS/2 EMX */
#ifdef HAVE_AV_CONFIG_H
#include <float.h>
#endif /* HAVE_AV_CONFIG_H */
#endif /* !__MINGW32__ && CONFIG_OS2 */
#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
......
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