diff options
author | Martin Storsjö <martin@martin.st> | 2012-06-30 18:49:33 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2012-07-01 19:20:11 +0300 |
commit | 3893feeccdf754057fc7c7ac711ae876733f2f33 (patch) | |
tree | 6c4ade73a189e43ba7813f68438bc11686d27990 /libavutil/eval.c | |
parent | a1245d5ca1bed154a3bf38843b63018ae3544115 (diff) | |
download | ffmpeg-3893feeccdf754057fc7c7ac711ae876733f2f33.tar.gz |
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.c | 1 |
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; |