[FFmpeg-cvslog] lavd/lavfi: fix float.h include.

Clément Bœsch git at videolan.org
Thu Dec 6 15:10:48 CET 2012


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Thu Dec  6 15:09:47 2012 +0100| [377d201790bbe08185b91b50c8bc4a3bbf951618] | committer: Clément Bœsch

lavd/lavfi: fix float.h include.

float.h is a system header.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=377d201790bbe08185b91b50c8bc4a3bbf951618
---

 libavdevice/lavfi.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavdevice/lavfi.c b/libavdevice/lavfi.c
index 4f1ba58..e4cacb6 100644
--- a/libavdevice/lavfi.c
+++ b/libavdevice/lavfi.c
@@ -25,7 +25,7 @@
 
 /* #define DEBUG */
 
-#include "float.h"              /* DBL_MIN, DBL_MAX */
+#include <float.h>              /* DBL_MIN, DBL_MAX */
 
 #include "libavutil/bprint.h"
 #include "libavutil/channel_layout.h"



More information about the ffmpeg-cvslog mailing list