diff options
author | Martin Storsjö <martin@martin.st> | 2014-05-19 17:41:05 +0300 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2014-05-19 18:34:51 +0300 |
commit | 82fc9f4b38244236a6ca7f946662ca653044a04c (patch) | |
tree | d1b83793bcdf431015c0bc9ec25a7863d15687e2 /libavutil | |
parent | 853cc025d63ee2539fc0460dab62c5b9a3fd2043 (diff) | |
download | ffmpeg-82fc9f4b38244236a6ca7f946662ca653044a04c.tar.gz |
display: Include mathematics.h for fallback definition of NAN
This fixes compilation with MSVC.
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/display.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/display.c b/libavutil/display.c index ae6c1c2474..b2b98329a0 100644 --- a/libavutil/display.c +++ b/libavutil/display.c @@ -23,6 +23,7 @@ #include <math.h> #include "display.h" +#include "mathematics.h" // fixed point to double #define CONV_FP(x) ((double) (x)) / (1 << 16) |