Commit 6daff126 authored by michael's avatar michael

UINT64_MAX fix


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@3125 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3cb885a9
......@@ -115,6 +115,10 @@ extern const struct AVOption avoptions_workaround_bug[11];
#define INT64_MAX int64_t_C(9223372036854775807)
#endif
#ifndef UINT64_MAX
#define UINT64_MAX uint64_t_C(0xFFFFFFFFFFFFFFFF)
#endif
#ifdef EMULATE_FAST_INT
/* note that we don't emulate 64bit ints */
typedef signed char int_fast8_t;
......
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