diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-12-05 08:39:37 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-12-05 08:39:37 +0000 |
commit | 8aa1e3da036744fdbc7f3d0a8e7db43ecfd7f0f0 (patch) | |
tree | e93b42765db624dedad8e8cb6eaeebc05d7d4e6a /ffmpeg.c | |
parent | aa388dba30a468a085056c9bc8a1bd6aa6f821f4 (diff) | |
download | ffmpeg-8aa1e3da036744fdbc7f3d0a8e7db43ecfd7f0f0.tar.gz |
infinity fix by ("Steven M. Schultz" <sms at 2BSD dot COM>)
Originally committed as revision 1310 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffmpeg.c')
-rw-r--r-- | ffmpeg.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -31,6 +31,9 @@ #include <time.h> #include <ctype.h> +#if !defined(INFINITY) && defined(HUGE_VAL) +#define INFINITY HUGE_VAL +#endif #define MAXINT64 INT64_C(0x7fffffffffffffff) |