diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-17 23:16:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-17 23:22:22 +0200 |
commit | c25224737cba4079602c447c344cb54b81430ce4 (patch) | |
tree | a643a0caf478eae6dbb3e09748a33f932ff8397f | |
parent | e252460c9be79810ab3416b0edf98260b81f2c72 (diff) | |
download | ffmpeg-c25224737cba4079602c447c344cb54b81430ce4.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>
-rw-r--r-- | libavutil/intfloat_readwrite.c | 1 |
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" |