Commit 5a8a7bff authored by michael's avatar michael

uint_fast64_t emulation by (Wolfram Gloger: wmglo, dent med uni-muenchen de)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@4356 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5d4f160a
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment