diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2004-01-10 12:53:07 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2004-01-10 12:53:07 +0000 |
commit | d2a9bdddd8358f6be94bfd891d026fac82cbbcbf (patch) | |
tree | d12f915821714b3aff93836460f2483cb2c46223 /libavcodec | |
parent | d94728c37728f747baf903f7c96850f8dd040e67 (diff) | |
download | ffmpeg-d2a9bdddd8358f6be94bfd891d026fac82cbbcbf.tar.gz |
more sane inttypes emulation behavior if libavcodec is used outside ffmpeg
Originally committed as revision 2685 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/common.h b/libavcodec/common.h index ee5a4cbd82..e0e90225c0 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -82,7 +82,7 @@ extern const struct AVOption avoptions_workaround_bug[11]; # define always_inline inline #endif -#ifdef HAVE_INTTYPES_H +#ifndef EMULATE_INTTYPES # include <inttypes.h> #else typedef signed char int8_t; |