Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Storsjö <martin@martin.st>2012-06-30 19:49:33 +0400
committerMartin Storsjö <martin@martin.st>2012-07-01 20:20:11 +0400
commit3893feeccdf754057fc7c7ac711ae876733f2f33 (patch)
tree6c4ade73a189e43ba7813f68438bc11686d27990 /libavutil/eval.c
parenta1245d5ca1bed154a3bf38843b63018ae3544115 (diff)
opt/eval: Include mathematics.h for NAN/INFINITY
These files use NAN/INFINITY but didn't include mathematics.h to get the fallback definitions if the system lacks the macros. Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavutil/eval.c')
-rw-r--r--libavutil/eval.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/eval.c b/libavutil/eval.c
index 4d8ebf4f6e..36b5ce5dda 100644
--- a/libavutil/eval.c
+++ b/libavutil/eval.c
@@ -29,6 +29,7 @@
#include "avutil.h"
#include "eval.h"
#include "log.h"
+#include "mathematics.h"
typedef struct Parser {
const AVClass *class;