Commit 59d8efb3 authored by Michael Niedermayer's avatar Michael Niedermayer

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
parent 8d204aa4
......@@ -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