diff libmpcodecs/ve_lavc.c @ 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 6770c410f4f3
children 7d60fe925f87
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)