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-13 00:45:02 +0200
commit426715ccbd57714f4e71589bb211530ace38fbd9 (patch)
tree89e6b1f199959979111c6e7fae0dd88cbf6d4e5f
parenta4e3bb0106a5f3d6e183ae7bc578d6039822cef1 (diff)
downloadffmpeg-426715ccbd57714f4e71589bb211530ace38fbd9.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"