You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
#define [U]INT32_{MIN,MAX} if missing
Originally committed as revision 5261 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -140,6 +140,18 @@
|
|||||||
#define INT16_MAX 0x7fff
|
#define INT16_MAX 0x7fff
|
||||||
#endif
|
#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
|
#ifndef INT64_MIN
|
||||||
#define INT64_MIN (-0x7fffffffffffffffLL-1)
|
#define INT64_MIN (-0x7fffffffffffffffLL-1)
|
||||||
#endif
|
#endif
|
||||||
|
Reference in New Issue
Block a user