Commit 5e819b7b authored by mru's avatar mru

#define [U]INT32_{MIN,MAX} if missing


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5261 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0b71692a
......@@ -140,6 +140,18 @@
#define INT16_MAX 0x7fff
#endif
#ifndef INT32_MIN
#define INT32_MIN (-0x7fffffff-1)
#endif
#ifndef INT32_MAX
#define INT32_MAX 0x7fffffff
#endif
#ifndef UINT32_MAX
#define UINT32_MAX 0xffffffff
#endif
#ifndef INT64_MIN
#define INT64_MIN (-0x7fffffffffffffffLL-1)
#endif
......
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