diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-17 23:16:05 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-14 01:29:45 +0200 |
commit | f504049b22dbf9ed265e8ff941e92e3458b2700d (patch) | |
tree | d674ca0e36ee9b9577e5527caa03be619f50e783 | |
parent | c446bc31f50182a2537c1084d01a3c5094c3c2e6 (diff) | |
download | ffmpeg-f504049b22dbf9ed265e8ff941e92e3458b2700d.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.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" |