Compile process:
Error One: Cannot open include file: "Inttypes.h": No such file or directory
WORKAROUND: Delete it and add the following code before it:
#if defined (WIN32) &&!defined (__mingw32__) &&!defined (__cygwin__)
# define Config_win32
#endif
#if defined (WIN32) &&!defined (__mingw32__) &&!defined (__cygwin__) &&!defined (emulate_ Inttypes)
# define Emulate_inttypes
#endif
#ifndef emulate_inttypes
# include <inttypes.h>
#else
typedef signed Char int8_t;
typedef signed short int16_t;
typedef signed INT int32_t;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
# ifdef CONFIG_WIN32
typedef signed __INT64 int64_t;
typedef unsigned __INT64 uint64_t;
# Else/* Other OS */
typedef signed long Long int64_t;
typedef unsigned long long uint64_t;
# endif */Other OS */
#endif/* Emulate_inttypes */
FFmpeg "Inttypes.h": No such file or directory