summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2008-03-13 00:20:15 +0000
committerDiego Biurrun <diego@biurrun.de>2008-03-13 00:20:15 +0000
commit6ef291287951d893fd6e2f09ba83501826cb6c40 (patch)
treef7b11f304af3c3abd7160bdbbb78b7b5456c1cc1
parent2cab640129cad86f376f5bd62dbf345b3d36ec7c (diff)
Add missing stdint.h #include to headers that use it.
Originally committed as revision 12429 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--libavcodec/imgconvert.h1
-rw-r--r--libavutil/intfloat_readwrite.h1
-rw-r--r--libavutil/mathematics.h1
3 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/imgconvert.h b/libavcodec/imgconvert.h
index 102f925c0b..a87106aee2 100644
--- a/libavcodec/imgconvert.h
+++ b/libavcodec/imgconvert.h
@@ -24,6 +24,7 @@
#ifndef FFMPEG_IMGCONVERT_H
#define FFMPEG_IMGCONVERT_H
+#include <stdint.h>
#include "avcodec.h"
int ff_fill_linesize(AVPicture *picture, int pix_fmt, int width);
diff --git a/libavutil/intfloat_readwrite.h b/libavutil/intfloat_readwrite.h
index fe7fe35201..1ebb053f3a 100644
--- a/libavutil/intfloat_readwrite.h
+++ b/libavutil/intfloat_readwrite.h
@@ -21,6 +21,7 @@
#ifndef FFMPEG_INTFLOAT_READWRITE_H
#define FFMPEG_INTFLOAT_READWRITE_H
+#include <stdint.h>
#include "common.h"
/* IEEE 80 bits extended float */
diff --git a/libavutil/mathematics.h b/libavutil/mathematics.h
index a0c286249f..fa407b6111 100644
--- a/libavutil/mathematics.h
+++ b/libavutil/mathematics.h
@@ -21,6 +21,7 @@
#ifndef FFMPEG_MATHEMATICS_H
#define FFMPEG_MATHEMATICS_H
+#include <stdint.h>
#include "rational.h"
enum AVRounding {