changeset 17469:40b109500177

Using INT_MAX without including limits.h breaks compilation on MinGW. patch by Gianluigi Tiesi, mplayer $$@$$ netfarm $$.$$ it
author diego
date Mon, 23 Jan 2006 13:53:40 +0000
parents 41d8991c3632
children 21123e349463
files libmpcodecs/ve_lavc.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libmpcodecs/ve_lavc.c	Mon Jan 23 12:15:22 2006 +0000
+++ b/libmpcodecs/ve_lavc.c	Mon Jan 23 13:53:40 2006 +0000
@@ -2,6 +2,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <math.h>
+#include <limits.h>
 #include <time.h>
 
 #if !defined(INFINITY) && defined(HUGE_VAL)