summaryrefslogtreecommitdiff
path: root/libavutil
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-01-25 03:33:43 +0000
committerMans Rullgard <mans@mansr.com>2011-01-25 15:57:53 +0000
commite781c4e6ff0b93db1ebc0ebe6983b38490117a98 (patch)
treec18ea3cc8b2ed3eb6c4abb1d1851994c402b6e0c /libavutil
parent1e48cdaac32e42a5c87a8f203b5827bdcc46db93 (diff)
intfloat_readwrite: include "mathematics.h" for fallback macros
This allows this file to build on systems lacking NAN or INFINITY in math.h. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavutil')
-rw-r--r--libavutil/intfloat_readwrite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/intfloat_readwrite.c b/libavutil/intfloat_readwrite.c
index d9b3752bb1..f51d8ddd4f 100644
--- a/libavutil/intfloat_readwrite.c
+++ b/libavutil/intfloat_readwrite.c
@@ -26,7 +26,7 @@
*/
#include <stdint.h>
-#include <math.h>
+#include "mathematics.h"
#include "intfloat_readwrite.h"
double av_int2dbl(int64_t v){