comparison common.h @ 1738:378e98870df4 libavcodec

more sane inttypes emulation behavior if libavcodec is used outside ffmpeg
author michael
date Sat, 10 Jan 2004 12:53:07 +0000
parents cb0abe523bc6
children 43a856190778
comparison
equal deleted inserted replaced
1737:d39bb6945761 1738:378e98870df4
80 # define always_inline __attribute__((always_inline)) inline 80 # define always_inline __attribute__((always_inline)) inline
81 #else 81 #else
82 # define always_inline inline 82 # define always_inline inline
83 #endif 83 #endif
84 84
85 #ifdef HAVE_INTTYPES_H 85 #ifndef EMULATE_INTTYPES
86 # include <inttypes.h> 86 # include <inttypes.h>
87 #else 87 #else
88 typedef signed char int8_t; 88 typedef signed char int8_t;
89 typedef signed short int16_t; 89 typedef signed short int16_t;
90 typedef signed int int32_t; 90 typedef signed int int32_t;