Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-04-18 01:16:05 +0400
committerMichael Niedermayer <michaelni@gmx.at>2013-05-10 00:16:23 +0400
commit9f7baf139f721e84a5db06e1352e4fb14a7965c8 (patch)
tree25de410d54a688a7543f84a0ada3017828f31346 /libavutil
parentec89046fa11057e130ea9c968c32b713d85c8fa2 (diff)
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>
Diffstat (limited to 'libavutil')
-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"