diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-06-07 14:12:15 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-06-07 14:12:15 +0000 |
commit | 59d8efb3403f58a8b1feec59ef408fb33c907abb (patch) | |
tree | 483ea9f187d731821f5c2ead9c302edafbe7246a | |
parent | 8d204aa4156940c15b4f8e8bc0ac979f630273c9 (diff) | |
download | ffmpeg-59d8efb3403f58a8b1feec59ef408fb33c907abb.tar.gz |
uint_fast64_t emulation by (Wolfram Gloger: wmglo, dent med uni-muenchen de)
Originally committed as revision 4356 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 75ef127f24..7d5edb4a7d 100644 --- a/libavcodec/common.h +++ b/libavcodec/common.h @@ -125,13 +125,13 @@ #endif #ifdef EMULATE_FAST_INT -/* note that we don't emulate 64bit ints */ typedef signed char int_fast8_t; typedef signed int int_fast16_t; typedef signed int int_fast32_t; typedef unsigned char uint_fast8_t; typedef unsigned int uint_fast16_t; typedef unsigned int uint_fast32_t; +typedef uint64_t uint_fast64_t; #endif #ifndef INT_BIT |