aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-17 23:16:05 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-05-09 22:16:23 +0200
commit9f7baf139f721e84a5db06e1352e4fb14a7965c8 (patch)
tree25de410d54a688a7543f84a0ada3017828f31346
parentec89046fa11057e130ea9c968c32b713d85c8fa2 (diff)
downloadffmpeg-9f7baf139f721e84a5db06e1352e4fb14a7965c8.tar.gz
avutil/intfloat_readwrite: include common.h for isinf()
Solution based on rational.c, which uses isinf() too This should fix compilation with msvc Signed-off-by: Michael Niedermayer <michaelni@gmx.at> (cherry picked from commit c25224737cba4079602c447c344cb54b81430ce4) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r--libavutil/intfloat_readwrite.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavutil/intfloat_readwrite.c b/libavutil/intfloat_readwrite.c
index 9574532116..142331dac1 100644
--- a/libavutil/intfloat_readwrite.c
+++ b/libavutil/intfloat_readwrite.c
@@ -26,6 +26,7 @@
*/
#include <stdint.h>
+#include "common.h"
#include "mathematics.h"
#include "intfloat_readwrite.h"