fix compilation

svn-id: r12467
This commit is contained in:
Paweł Kołodziejski 2004-01-18 07:21:10 +00:00
parent 8a6641826b
commit ef9732f1f5

View File

@ -25,7 +25,15 @@
// Uncomment this if you are using libmpeg2 0.3.1.
// #define USE_MPEG2_0_3_1
#ifndef _MSC_VER
#ifdef _MSC_VER
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;
#else
#include <inttypes.h>
#endif